* Determine if a value is an object with a null prototype * * @returns {boolean} True if `value` is an `Object` with a null prototype
(value)
| 588 | * @returns {boolean} True if `value` is an `Object` with a null prototype |
| 589 | */ |
| 590 | function isBlankObject(value) { |
| 591 | return value !== null && typeof value === 'object' && !getPrototypeOf(value); |
| 592 | } |
| 593 | |
| 594 | |
| 595 | /** |
no outgoing calls
no test coverage detected