(specifier: string)
| 15 | } |
| 16 | |
| 17 | export function importEsm(specifier: string) { |
| 18 | // eslint-disable-next-line no-new-func |
| 19 | return new Function('s', 'return import(s)')(specifier) as Promise<any> |
| 20 | } |
| 21 | |
| 22 | export function isSqliteFile(dbPath: string): boolean { |
| 23 | try { |
no outgoing calls
no test coverage detected