MCPcopy Create free account
hub / github.com/OpenReservation/OpenReservation / isObject

Function isObject

OpenReservation/wwwroot/Scripts/angular.js:573–576  ·  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. * * @

(value)

Source from the content-addressed store, hash-verified

571 * @returns {boolean} True if `value` is an `Object` but not `null`.
572 */
573 function isObject(value) {
574 // http://jsperf.com/isobject4
575 return value !== null && typeof value === 'object';
576 }
577
578 /**
579 * Determine if a value is an object with a null prototype

Callers 15

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

Calls

no outgoing calls

Tested by

no test coverage detected