* Determine if a value is an object with a null prototype * * @returns {boolean} True if `value` is an `Object` with a null prototype
(value)
| 618 | * @returns {boolean} True if `value` is an `Object` with a null prototype |
| 619 | */ |
| 620 | function isBlankObject(value) { |
| 621 | return value !== null && typeof value === 'object' && !getPrototypeOf(value); |
| 622 | } |
| 623 | |
| 624 | |
| 625 | /** |
no outgoing calls
no test coverage detected