* @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)
| 580 | * @returns {boolean} True if `value` is defined. |
| 581 | */ |
| 582 | function isDefined(value) {return typeof value !== 'undefined';} |
| 583 | |
| 584 | |
| 585 | /** |
no outgoing calls
no test coverage detected