(id: string, extensions: string[] | undefined)
| 788 | } |
| 789 | |
| 790 | function isScannable(id: string, extensions: string[] | undefined): boolean { |
| 791 | return ( |
| 792 | JS_TYPES_RE.test(id) || |
| 793 | htmlTypesRE.test(id) || |
| 794 | extensions?.includes(path.extname(id)) || |
| 795 | false |
| 796 | ) |
| 797 | } |
no outgoing calls
no test coverage detected