(fileName)
| 7610 | } |
| 7611 | ts.pathIsBareSpecifier = pathIsBareSpecifier; |
| 7612 | function hasExtension(fileName) { |
| 7613 | return ts.stringContains(getBaseFileName(fileName), "."); |
| 7614 | } |
| 7615 | ts.hasExtension = hasExtension; |
| 7616 | function fileExtensionIs(path, extension) { |
| 7617 | return path.length > extension.length && ts.endsWith(path, extension); |
nothing calls this directly
no test coverage detected
searching dependent graphs…