* Determines whether a charCode corresponds to `/` or `\`.
(charCode)
| 7549 | * Determines whether a charCode corresponds to `/` or `\`. |
| 7550 | */ |
| 7551 | function isAnyDirectorySeparator(charCode) { |
| 7552 | return charCode === 47 /* CharacterCodes.slash */ || charCode === 92 /* CharacterCodes.backslash */; |
| 7553 | } |
| 7554 | ts.isAnyDirectorySeparator = isAnyDirectorySeparator; |
| 7555 | /** |
| 7556 | * Determines whether a path starts with a URL scheme (e.g. starts with `http://`, `ftp://`, `file://`, etc.). |
no outgoing calls
no test coverage detected