(p: string)
| 25 | |
| 26 | const windowsSlashRE = /\\/g |
| 27 | export function slash(p: string): string { |
| 28 | return p.replace(windowsSlashRE, '/') |
| 29 | } |
| 30 | |
| 31 | const postfixRE = /[?#].*$/ |
| 32 | export function cleanUrl(url: string): string { |
no outgoing calls
no test coverage detected
searching dependent graphs…