(home: string)
| 28 | } |
| 29 | |
| 30 | export function importedRootOf(home: string): string { |
| 31 | return join(home, 'imported'); |
| 32 | } |
| 33 | |
| 34 | export function importedDirOf(home: string, importId: string): string { |
| 35 | if (!isImportId(importId)) throw new ZipImportError(`invalid import id: "${importId}"`); |
no outgoing calls
no test coverage detected