(code: number | undefined)
| 80 | } |
| 81 | |
| 82 | function isPathSeparator(code: number | undefined) { |
| 83 | return code === CHAR_FORWARD_SLASH || code === CHAR_BACKWARD_SLASH; |
| 84 | } |
| 85 | |
| 86 | function isPosixPathSeparator(code: number | undefined) { |
| 87 | return code === CHAR_FORWARD_SLASH; |
no outgoing calls
no test coverage detected