(path)
| 8013 | } |
| 8014 | ts.toPath = toPath; |
| 8015 | function removeTrailingDirectorySeparator(path) { |
| 8016 | if (hasTrailingDirectorySeparator(path)) { |
| 8017 | return path.substr(0, path.length - 1); |
| 8018 | } |
| 8019 | return path; |
| 8020 | } |
| 8021 | ts.removeTrailingDirectorySeparator = removeTrailingDirectorySeparator; |
| 8022 | function ensureTrailingDirectorySeparator(path) { |
| 8023 | if (!hasTrailingDirectorySeparator(path)) { |
no test coverage detected
searching dependent graphs…