(path: string)
| 6 | |
| 7 | // https://github.com/vitejs/vite/blob/b7ddfae5f852c2948fab03e94751ce56f5f31ce0/packages/vite/src/node/plugins/resolve.ts#L534 |
| 8 | function splitFileAndPostfix(path: string) { |
| 9 | const file = cleanUrl(path); |
| 10 | return { file, postfix: path.slice(file.length) }; |
| 11 | } |
| 12 | |
| 13 | // https://github.com/vitejs/vite/blob/b7ddfae5f852c2948fab03e94751ce56f5f31ce0/packages/vite/src/node/plugins/resolve.ts#L566-L574 |
| 14 | /** |
no test coverage detected