* Determine if a value is an object with a null prototype * * @returns {boolean} True if `value` is an `Object` with a null prototype
(value)
| 670 | * @returns {boolean} True if `value` is an `Object` with a null prototype |
| 671 | */ |
| 672 | function isBlankObject(value) { |
| 673 | return value !== null && typeof value === 'object' && !getPrototypeOf(value); |
| 674 | } |
| 675 | |
| 676 | |
| 677 | /** |
no outgoing calls
no test coverage detected