* @ngdoc function * @name angular.isUndefined * @function * * @description * Determines if a reference is undefined. * * @param {*} value Reference to check. * @returns {boolean} True if `value` is undefined.
(value)
| 304 | * @returns {boolean} True if `value` is undefined. |
| 305 | */ |
| 306 | function isUndefined(value){return typeof value == 'undefined';} |
| 307 | |
| 308 | |
| 309 | /** |
no outgoing calls
no test coverage detected