* Return `true` if the parameter is a real number (and not a numeric string). * * @param {*} n * @returns {boolean}
(n)
| 142 | * @returns {boolean} |
| 143 | */ |
| 144 | static isNumberStrict(n) { |
| 145 | return typeof n === 'number'; |
| 146 | } |
| 147 | |
| 148 | /** |
| 149 | * Return `true` if the parameter is a number (or a number written as a string). |
no outgoing calls
no test coverage detected