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

Function isObject

lib/test/angular/1.5.0/angular.js:579–582  ·  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

577 * @returns {boolean} True if `value` is an `Object` but not `null`.
578 */
579function isObject(value) {
580 // http://jsperf.com/isobject4
581 return value !== null && typeof value === 'object';
582}
583
584
585/**

Callers 15

baseExtendFunction · 0.70
copyElementFunction · 0.70
shallowCopyFunction · 0.70
bootstrapFunction · 0.70
serializeObjectFunction · 0.70
jqLiteDataFunction · 0.70
angular.jsFile · 0.70
supportObjectFunction · 0.70
prepareAnimateOptionsFunction · 0.70
parseDirectiveBindingsFunction · 0.70
$CompileProviderFunction · 0.70
collectDirectivesFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected