* @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)
| 703 | * @returns {boolean} True if `value` is an `Object` but not `null`. |
| 704 | */ |
| 705 | function isObject(value) { |
| 706 | // http://jsperf.com/isobject4 |
| 707 | return value !== null && typeof value === 'object'; |
| 708 | } |
| 709 | |
| 710 | |
| 711 | /** |
no outgoing calls
no test coverage detected