(wat: unknown)
| 116 | * @returns A boolean representing the result. |
| 117 | */ |
| 118 | export function isPlainObject(wat: unknown): wat is Record<string, unknown> { |
| 119 | return isBuiltin(wat, 'Object'); |
| 120 | } |
| 121 | |
| 122 | /** |
| 123 | * Checks whether given value's type is an Event instance |
no test coverage detected