| 122199 | } |
| 122200 | moduleSpecifiers_1.countPathComponents = countPathComponents; |
| 122201 | function usesJsExtensionOnImports(_a) { |
| 122202 | var imports = _a.imports; |
| 122203 | return ts.firstDefined(imports, function (_a) { |
| 122204 | var text = _a.text; |
| 122205 | return ts.pathIsRelative(text) ? ts.hasJSFileExtension(text) : undefined; |
| 122206 | }) || false; |
| 122207 | } |
| 122208 | function comparePathsByRedirectAndNumberOfDirectorySeparators(a, b) { |
| 122209 | return ts.compareBooleans(b.isRedirect, a.isRedirect) || ts.compareNumberOfDirectorySeparators(a.path, b.path); |
| 122210 | } |