* Determines whether a path is neither relative nor absolute, e.g. "path/to/file". * Also known misleadingly as "non-relative".
(path)
| 7606 | * Also known misleadingly as "non-relative". |
| 7607 | */ |
| 7608 | function pathIsBareSpecifier(path) { |
| 7609 | return !pathIsAbsolute(path) && !pathIsRelative(path); |
| 7610 | } |
| 7611 | ts.pathIsBareSpecifier = pathIsBareSpecifier; |
| 7612 | function hasExtension(fileName) { |
| 7613 | return ts.stringContains(getBaseFileName(fileName), "."); |
nothing calls this directly
no test coverage detected
searching dependent graphs…