(str)
| 110 | |
| 111 | /** @param {string} str */ |
| 112 | export function posixify(str) { |
| 113 | return str.replace(/\\/g, '/'); |
| 114 | } |
| 115 | |
| 116 | /** |
| 117 | * Like `path.join`, but posixified and with a leading `./` if necessary |
no outgoing calls
no test coverage detected