* @ngdoc function * @name angular.isObject * @function * * @description * Determines if a reference is an `Object`. Unlike `typeof` in JavaScript, `null`s are not * considered to be objects. * * @param {*} value Reference to check. * @returns {boolean} True if `value` is an `Object` but not
(value)
| 333 | * @returns {boolean} True if `value` is an `Object` but not `null`. |
| 334 | */ |
| 335 | function isObject(value){return value != null && typeof value == 'object';} |
| 336 | |
| 337 | |
| 338 | /** |
no outgoing calls
no test coverage detected