(path)
| 20918 | } |
| 20919 | ts.extensionFromPath = extensionFromPath; |
| 20920 | function isAnySupportedFileExtension(path) { |
| 20921 | return tryGetExtensionFromPath(path) !== undefined; |
| 20922 | } |
| 20923 | ts.isAnySupportedFileExtension = isAnySupportedFileExtension; |
| 20924 | function tryGetExtensionFromPath(path) { |
| 20925 | return ts.find(extensionsToRemove, function (e) { return ts.fileExtensionIs(path, e); }); |
nothing calls this directly
no test coverage detected