* Determine if a value is an object with a null prototype * * @returns {boolean} True if `value` is an `Object` with a null prototype
(value)
| 599 | * @returns {boolean} True if `value` is an `Object` with a null prototype |
| 600 | */ |
| 601 | function isBlankObject(value) { |
| 602 | return value !== null && typeof value === 'object' && !getPrototypeOf(value); |
| 603 | } |
| 604 | |
| 605 | |
| 606 | /** |