* Test whether a value is a number * @param {*} value * @returns {boolean}
(value)
| 9 | * @returns {boolean} |
| 10 | */ |
| 11 | function isNumber (value) { |
| 12 | return (value instanceof Number || typeof value === 'number') |
| 13 | } |
| 14 | |
| 15 | /** |
| 16 | * Test whether two values are approximately equal. Tests whether the difference |
no outgoing calls
no test coverage detected
searching dependent graphs…