(input: unknown)
| 554 | * @internal |
| 555 | */ |
| 556 | export const isRecordOrArray = (input: unknown): input is { [x: PropertyKey]: unknown } => |
| 557 | typeof input === "object" && input !== null |
| 558 | |
| 559 | /** |
| 560 | * A refinement that checks if a value is an `object`. Note that in JavaScript, |