(code)
| 63 | const lazyMatchGlobPattern = getLazy(() => require('internal/fs/glob').matchGlobPattern); |
| 64 | |
| 65 | function isPathSeparator(code) { |
| 66 | return code === CHAR_FORWARD_SLASH || code === CHAR_BACKWARD_SLASH; |
| 67 | } |
| 68 | |
| 69 | function isPosixPathSeparator(code) { |
| 70 | return code === CHAR_FORWARD_SLASH; |
no outgoing calls
no test coverage detected
searching dependent graphs…