MCPcopy Create free account
hub / github.com/cafebazaar/blacksmith / isObject

Function isObject

web/static/bower_components/angular/angular.js:590–593  ·  view source on GitHub ↗

* @ngdoc function * @name angular.isObject * @module ng * @kind function * * @description * Determines if a reference is an `Object`. Unlike `typeof` in JavaScript, `null`s are not * considered to be objects. Note that JavaScript arrays are objects. * * @param {*} value Reference to check.

(value)

Source from the content-addressed store, hash-verified

588 * @returns {boolean} True if `value` is an `Object` but not `null`.
589 */
590function isObject(value) {
591 // http://jsperf.com/isobject4
592 return value !== null && typeof value === 'object';
593}
594
595
596/**

Callers 15

baseExtendFunction · 0.85
copyFunction · 0.85
shallowCopyFunction · 0.85
bootstrapFunction · 0.85
serializeObjectFunction · 0.85
jqLiteDataFunction · 0.85
angular.jsFile · 0.85
supportObjectFunction · 0.85
instantiateFunction · 0.85
prepareAnimateOptionsFunction · 0.85
parseDirectiveBindingsFunction · 0.85
$CompileProviderFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected