(value: unknown)
| 51 | } |
| 52 | |
| 53 | export function isPrimitive(value: unknown): boolean { |
| 54 | return ( |
| 55 | value === null || (typeof value !== 'function' && typeof value !== 'object') |
| 56 | ) |
| 57 | } |
| 58 | |
| 59 | export function slash(path: string): string { |
| 60 | return path.replace(/\\/g, '/') |
no outgoing calls
no test coverage detected