* @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)
| 688 | * @returns {boolean} True if `value` is undefined. |
| 689 | */ |
| 690 | function isUndefined(value) { |
| 691 | return typeof value === 'undefined'; |
| 692 | } |
| 693 | |
| 694 | |
| 695 | /** |
no outgoing calls
no test coverage detected