| 47 | export const removedScripts = []; |
| 48 | /** @return {boolean|?RegExpExecArray} */ |
| 49 | export const matchUserScript = text => !/^\s*</.test(text) /*HTML*/ && METABLOCK_RE.exec(text); |
| 50 | |
| 51 | const arrayType = { |
| 52 | default: () => [], |
no test coverage detected