(url: string)
| 22 | * @internal |
| 23 | */ |
| 24 | export function cleanUrl(url: string): string { |
| 25 | return url.replace(postfixRE, ''); |
| 26 | } |
| 27 | |
| 28 | // https://github.com/vitejs/vite/blob/b7ddfae5f852c2948fab03e94751ce56f5f31ce0/packages/vite/src/node/utils.ts#L393 |
| 29 | /** |
no test coverage detected