MCPcopy Index your code
hub / github.com/angular-ui/ui-grid / isBlankObject

Function isBlankObject

lib/test/angular/1.7.0/angular.js:672–674  ·  view source on GitHub ↗

* Determine if a value is an object with a null prototype * * @returns {boolean} True if `value` is an `Object` with a null prototype

(value)

Source from the content-addressed store, hash-verified

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

Callers 2

forEachFunction · 0.70
copyRecurseFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected