* @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)
| 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 |
no outgoing calls
no test coverage detected