(path: string | URL, ...paths: string[])
| 27 | * @returns The joined and normalized path. |
| 28 | */ |
| 29 | export function join(path: string | URL, ...paths: string[]): string { |
| 30 | return isWindows ? windowsJoin(path, ...paths) : posixJoin(path, ...paths); |
| 31 | } |
no outgoing calls
no test coverage detected