(path: string)
| 105 | } |
| 106 | |
| 107 | function normalizeSourcePath(path: string): string { |
| 108 | return normalize(path.replaceAll('\\', '/')).replace(/^\.\//, ''); |
| 109 | } |
| 110 | |
| 111 | function isRecord(value: unknown): value is Record<string, unknown> { |
| 112 | return typeof value === 'object' && value !== null && !Array.isArray(value); |
no test coverage detected