1/** 2 * Path utilities (POSIX normalization). 3 */ 4export const toPosix = (value: string): string => value.replace(/\\/g, "/");