isNumeric.d.ts 98 B

1234
  1. /**
  2. * Tells if a given input is a number
  3. */
  4. export declare function isNumeric(n: any): boolean;