* Determine if a value is an object with a null prototype * * @returns {boolean} True if `value` is an `Object` with a null prototype
(value)
| 704 | * @returns {boolean} True if `value` is an `Object` with a null prototype |
| 705 | */ |
| 706 | function isBlankObject(value) { |
| 707 | return value !== null && typeof value === 'object' && !getPrototypeOf(value); |
| 708 | } |
| 709 | |
| 710 | |
| 711 | /** |
no outgoing calls
no test coverage detected