(input: unknown)
| 1103 | * @since 4.0.0 |
| 1104 | */ |
| 1105 | export function isObjectKeyword(input: unknown): input is object { |
| 1106 | return (typeof input === "object" && input !== null) || isFunction(input) |
| 1107 | } |
| 1108 | |
| 1109 | /** |
| 1110 | * Checks whether a value has a given property key. |
no test coverage detected