(match, index, label)
| 2 | "use strict"; |
| 3 | |
| 4 | function requireCapture(match, index, label) { |
| 5 | const value = String(match && match[index] ? match[index] : ""); |
| 6 | if (!value) throw new Error(`${label} capture missing`); |
| 7 | return value; |
| 8 | } |
| 9 | |
| 10 | function buildEnsureRootSnippet({ rootVar, conversationIdVar, errorFnVar }) { |
| 11 | return ( |
no outgoing calls
no test coverage detected