* @ngdoc function * @name angular.isUndefined * @module ng * @kind function * * @description * Determines if a reference is undefined. * * @param {*} value Reference to check. * @returns {boolean} True if `value` is undefined.
(value)
| 542 | * @returns {boolean} True if `value` is undefined. |
| 543 | */ |
| 544 | function isUndefined(value) { return typeof value === 'undefined'; } |
| 545 | |
| 546 | /** |
| 547 | * @ngdoc function |
no outgoing calls
no test coverage detected