(value)
| 9 | // Path Utilities |
| 10 | // ============================================================ |
| 11 | function normalizeFsPath(value) { |
| 12 | const resolved = path.resolve(String(value || '')); |
| 13 | return process.platform === 'win32' ? resolved.toLowerCase() : resolved; |
| 14 | } |
| 15 | |
| 16 | function getProjectSlug(cwd) { |
| 17 | return cwd.replace(/[^a-zA-Z0-9]/g, '-'); |
no outgoing calls
no test coverage detected