npm install --save @types/fast-isnumeric
This package contains type definitions for fast-isnumeric (https://github.com/plotly/fast-isnumeric#readme).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/fast-isnumeric.
/**
* The fast way to check if a JS object is numeric
* Inspired by is-number <https://github.com/jonschlinkert/is-number>
* but significantly simplified and sped up by ignoring number and string constructors
* ie these return false:
* new Number(1)
* new String('1')
*/
declare function isNumeric(n: any): boolean;
export = isNumeric;
- Last updated: Tue, 07 Nov 2023 03:09:37 GMT
- Dependencies: none
These definitions were written by Piotr Błażejewicz.