(node: Node)
| 69 | } |
| 70 | |
| 71 | function isRewritableScript(node: Node): node is HTMLScriptElement { |
| 72 | return node instanceof HTMLScriptElement && node.src.length > 0 |
| 73 | } |
| 74 | |
| 75 | function installScriptRewriteInterceptor({ |
| 76 | shouldRewrite, |
no outgoing calls
no test coverage detected