* @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
(value)
| 617 | * @returns {boolean} True if `value` is a `Number`. |
| 618 | */ |
| 619 | function isNumber(value) { return typeof value === 'number'; } |
| 620 | |
| 621 | /** |
| 622 | * @ngdoc function |
no outgoing calls
no test coverage detected