(id: string)
| 24 | const META_FILE = 'import-meta.json'; |
| 25 | |
| 26 | export function isImportId(id: string): boolean { |
| 27 | return IMPORT_ID_RE.test(id); |
| 28 | } |
| 29 | |
| 30 | export function importedRootOf(home: string): string { |
| 31 | return join(home, 'imported'); |
no outgoing calls
no test coverage detected