(filename: string)
| 5 | const normalizePathRegExp = new RegExp(`\\${win32.sep}`, 'g'); |
| 6 | |
| 7 | const normalizePath: NormalizePath = function normalizePath(filename: string) { |
| 8 | return filename.replace(normalizePathRegExp, posix.sep); |
| 9 | }; |
| 10 | |
| 11 | export { normalizePath as default }; |
no outgoing calls
no test coverage detected