(segments: string[])
| 435 | |
| 436 | for (let i = 0; i < path.length; i++) { |
| 437 | const char = path[i]; |
| 438 | if (char === '\\' && i + 1 < path.length) { |
| 439 | const next = path[i + 1]; |
| 440 | if (next === '/') { |
| 441 | current += next; |
| 442 | i++; |
no outgoing calls
no test coverage detected