(input: unknown)
| 578 | * @see isRecord to check for plain objects (excluding arrays and functions). |
| 579 | */ |
| 580 | export const isObject = (input: unknown): input is object => isRecordOrArray(input) || isFunction(input) |
| 581 | |
| 582 | /** |
| 583 | * A refinement that checks if a value is an object-like value and has a specific property key. |
no test coverage detected