(p: string)
| 161 | * @returns the normalized path, sans any query strings |
| 162 | */ |
| 163 | export const normalizeFsPath = (p: string) => normalizePath(p.split('?')[0].replace(/\0/g, '')); |
| 164 | |
| 165 | export const normalizeFsPathQuery = (importPath: string) => { |
| 166 | const pathParts = importPath.split('?'); |
no test coverage detected