(value: unknown)
| 465 | } |
| 466 | |
| 467 | function isObject(value: unknown): value is Record<string, unknown> { |
| 468 | return typeof value === 'object' && value !== null && !Array.isArray(value); |
| 469 | } |
| 470 | |
| 471 | function isWithin(child: string, parent: string): boolean { |
| 472 | const relative = path.relative(parent, child); |
no outgoing calls
no test coverage detected