(...pathSegments: string[])
| 26 | * @returns The resolved path. |
| 27 | */ |
| 28 | export function resolve(...pathSegments: string[]): string { |
| 29 | return isWindows |
| 30 | ? windowsResolve(...pathSegments) |
| 31 | : posixResolve(...pathSegments); |
| 32 | } |
no outgoing calls
no test coverage detected