(value: unknown)
| 542 | } |
| 543 | |
| 544 | function isRecord(value: unknown): value is Record<string, unknown> { |
| 545 | return typeof value === "object" && value !== null && !Array.isArray(value) |
| 546 | } |
| 547 | |
| 548 | function findPackageRoot(filename: string): string | undefined { |
| 549 | let directory = path.dirname(path.resolve(filename)) |
no outgoing calls
no test coverage detected