(path: string)
| 120 | } |
| 121 | |
| 122 | export function isJavaScript(path: string): boolean { |
| 123 | return /\.(m|c)?js(\?|$)/i.test(path); |
| 124 | } |
| 125 | |
| 126 | const parseImportsCache = new Map<string, Promise<ImportReference[]>>(); |
| 127 |
no outgoing calls
no test coverage detected