* Check if object is a valid number, not NaN or undefined, but it may be infinite * @param {any} n * @return {boolean} * @memberof Math
(n)
| 291 | * @return {boolean} |
| 292 | * @memberof Math */ |
| 293 | function isNumber(n) { return typeof n === 'number' && !isNaN(n); } |
| 294 | |
| 295 | /** |
| 296 | * Check if a value is stringifiable — i.e. it has a toString that returns |
no outgoing calls
no test coverage detected