MCPcopy Create free account
hub / github.com/angular-ui/ui-grid / isBlankObject

Function isBlankObject

lib/test/angular/1.4.3/angular.js:599–601  ·  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

597 * @returns {boolean} True if `value` is an `Object` with a null prototype
598 */
599function isBlankObject(value) {
600 return value !== null && typeof value === 'object' && !getPrototypeOf(value);
601}
602
603
604/**

Callers 2

forEachFunction · 0.70
copyFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected