* Determine if a value is an object with a null prototype * * @returns {boolean} True if `value` is an `Object` with a null prototype
(value)
| 714 | * @returns {boolean} True if `value` is an `Object` with a null prototype |
| 715 | */ |
| 716 | function isBlankObject(value) { |
| 717 | return value !== null && typeof value === 'object' && !getPrototypeOf(value); |
| 718 | } |
| 719 | |
| 720 | |
| 721 | /** |
no outgoing calls
no test coverage detected