* @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)
| 556 | * @returns {boolean} True if `value` is defined. |
| 557 | */ |
| 558 | function isDefined(value) { return typeof value !== 'undefined'; } |
| 559 | |
| 560 | /** |
| 561 | * @ngdoc function |
no outgoing calls
no test coverage detected