(name: string)
| 82 | * instead of failing on Windows where colons are illegal in filenames. |
| 83 | */ |
| 84 | export function sanitizePathName(name: string): string { |
| 85 | return name.replace(/:/g, "-") |
| 86 | } |
| 87 | |
| 88 | /** |
| 89 | * Validate that a manifest-supplied relative path is safe to join against a |
no outgoing calls
no test coverage detected