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

Function isBlankObject

test/angular/1.6/angular.js:716–718  ·  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

714 * @returns {boolean} True if `value` is an `Object` with a null prototype
715 */
716function isBlankObject(value) {
717 return value !== null && typeof value === 'object' && !getPrototypeOf(value);
718}
719
720
721/**

Callers 2

forEachFunction · 0.70
copyRecurseFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected