(pathValue: string)
| 29 | * Splits a PATH value into non-empty directory entries. |
| 30 | */ |
| 31 | export function splitPath(pathValue: string): string[] { |
| 32 | return pathValue.split(path.delimiter).filter(Boolean); |
| 33 | } |
| 34 | |
| 35 | /** |
| 36 | * Reads PATH from an environment object with Windows casing compatibility. |
no test coverage detected