* @ngdoc function * @name angular.isNumber * @module ng * @kind function * * @description * Determines if a reference is a `Number`. * * This includes the "special" numbers `NaN`, `+Infinity` and `-Infinity`. * * If you wish to exclude these then you can use the native * [`isFinite'](http
(value)
| 742 | * @returns {boolean} True if `value` is a `Number`. |
| 743 | */ |
| 744 | function isNumber(value) {return typeof value === 'number';} |
| 745 | |
| 746 | |
| 747 | /** |
no outgoing calls
no test coverage detected