(id: string)
| 378 | } |
| 379 | |
| 380 | function getExtension(id: string) { |
| 381 | let [filename] = id.split('?', 2) |
| 382 | return path.extname(filename).slice(1) |
| 383 | } |
| 384 | |
| 385 | function isPotentialCssRootFile(id: string) { |
| 386 | if (id.includes('/.vite/')) return false |
no outgoing calls
no test coverage detected