(fileName)
| 153481 | return false; |
| 153482 | } |
| 153483 | function isIndexFileName(fileName) { |
| 153484 | return ts.getBaseFileName(fileName, [".js", ".jsx", ".d.ts", ".ts", ".tsx"], /*ignoreCase*/ true) === "index"; |
| 153485 | } |
| 153486 | function compareNodeCoreModuleSpecifiers(a, b, importingFile, program) { |
| 153487 | if (ts.startsWith(a, "node:") && !ts.startsWith(b, "node:")) |
| 153488 | return ts.shouldUseUriStyleNodeCoreModules(importingFile, program) ? -1 /* Comparison.LessThan */ : 1 /* Comparison.GreaterThan */; |
no outgoing calls
no test coverage detected