* Determine if a value is an object with a null prototype * * @returns {boolean} True if `value` is an `Object` with a null prototype
(value)
| 688 | * @returns {boolean} True if `value` is an `Object` with a null prototype |
| 689 | */ |
| 690 | function isBlankObject(value) { |
| 691 | return value !== null && typeof value === 'object' && !getPrototypeOf(value); |
| 692 | } |
| 693 | |
| 694 | |
| 695 | /** |
no outgoing calls
no test coverage detected