(input: unknown)
| 794 | * @see isObject |
| 795 | */ |
| 796 | export const isRecord = (input: unknown): input is { [x: string | symbol]: unknown } => |
| 797 | isRecordOrArray(input) && !Array.isArray(input) |
| 798 | |
| 799 | /** |
| 800 | * A refinement that checks if a value is a readonly record (i.e., a plain object). |
nothing calls this directly
no test coverage detected
searching dependent graphs…