(url: string)
| 30 | |
| 31 | const postfixRE = /[?#].*$/ |
| 32 | export function cleanUrl(url: string): string { |
| 33 | return url.replace(postfixRE, '') |
| 34 | } |
| 35 | |
| 36 | export function splitFileAndPostfix(path: string): { |
| 37 | file: string |
no outgoing calls
no test coverage detected