(p: string)
| 141 | const exists = async (p: string) => !!(await fs.stat(p).catch(() => false)) |
| 142 | const toPosix = (p: string) => p.split(path.sep).join('/') |
| 143 | const stripExt = (p: string) => p.replace(/\.[^.]+$/, '') |
| 144 | const stripTrailingIndex = (p: string) => p.replace(/\/index$/, '') |
| 145 | const escapeRegExp = (s: string) => s.replace(/[.*+?^${}()|[\]\\]/g, '\\$&') |
| 146 |
no outgoing calls
no test coverage detected