MCPcopy
hub / github.com/binux/qiandao / isObject

Function isObject

web/static/components/angularjs/angular.js:535–535  ·  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

533 * @returns {boolean} True if `value` is an `Object` but not `null`.
534 */
535function isObject(value){return value != null && typeof value === 'object';}
536
537
538/**

Callers 15

sizeFunction · 0.70
copyFunction · 0.70
shallowCopyFunction · 0.70
jqLiteDataFunction · 0.70
angular.jsFile · 0.70
supportObjectFunction · 0.70
instantiateFunction · 0.70
applyDirectivesToNodeFunction · 0.70
compileTemplateUrlFunction · 0.70
$ControllerProviderFunction · 0.70
headersGetterFunction · 0.70
$HttpProviderFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected