* Determine if a value is an object with a null prototype * * @returns {boolean} True if `value` is an `Object` with a null prototype
(value)
| 607 | * @returns {boolean} True if `value` is an `Object` with a null prototype |
| 608 | */ |
| 609 | function isBlankObject(value) { |
| 610 | return value !== null && typeof value === 'object' && !getPrototypeOf(value); |
| 611 | } |
| 612 | |
| 613 | |
| 614 | /** |
no outgoing calls
no test coverage detected