* @ngdoc function * @name angular.isDefined * @module ng * @kind function * * @description * Determines if a reference is defined. * * @param {*} value Reference to check. * @returns {boolean} True if `value` is defined.
(value)
| 687 | * @returns {boolean} True if `value` is defined. |
| 688 | */ |
| 689 | function isDefined(value) {return typeof value !== 'undefined';} |
| 690 | |
| 691 | |
| 692 | /** |
no outgoing calls
no test coverage detected