(value: unknown)
| 359 | }; |
| 360 | |
| 361 | const isObjectRecord = (value: unknown): value is Record<string, unknown> => |
| 362 | typeof value === "object" && value !== null && !Array.isArray(value); |
| 363 | |
| 364 | const sourceKeyForBinding = (binding: Row): string => |
| 365 | migrationSourceKey( |
no outgoing calls
no test coverage detected