(pathObject: Partial<ParsedPath>)
| 26 | * @returns The formatted path. |
| 27 | */ |
| 28 | export function format(pathObject: Partial<ParsedPath>): string { |
| 29 | return isWindows ? windowsFormat(pathObject) : posixFormat(pathObject); |
| 30 | } |
no outgoing calls
no test coverage detected