(url: string, root: string, options: ImportOptions = {})
| 7 | } |
| 8 | |
| 9 | export function importFileUrl(url: string, root: string, options: ImportOptions = {}): Promise<any> { |
| 10 | return import(`./${pathToRelativeUrl(url, dirname(fileURLToPath(root)))}${options.fresh ? `?t=${Date.now()}` : ''}`); |
| 11 | } |
no test coverage detected