* @ngdoc function * @name angular.isDefined * @function * * @description * Determines if a reference is defined. * * @param {*} value Reference to check. * @returns {boolean} True if `value` is defined.
(value)
| 318 | * @returns {boolean} True if `value` is defined. |
| 319 | */ |
| 320 | function isDefined(value){return typeof value != 'undefined';} |
| 321 | |
| 322 | |
| 323 | /** |
no outgoing calls
no test coverage detected