Returns true if the value is a finite number.
TS implementation of the popular package is-number by Jon Schlinkert
Do checkout SkillRazr
Install with npm:
$ npm install --save is-number-ts
const { isNumber } = require("is-number-ts");
console.log(isNumber('3s')); // false
browser
const { isNumber } from "is-number-ts";
console.log(isNumber('3')); // true
Jasmine is used for the unit tests.
npm run test