Skip to content

SkillRazr/is-number-ts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

is-number-ts NPM version NPM monthly downloads NPM total downloads

Returns true if the value is a finite number.

TS implementation of the popular package is-number by Jon Schlinkert

Do checkout SkillRazr

Install

Install with npm:

$ npm install --save is-number-ts

Usage

const { isNumber } = require("is-number-ts");
console.log(isNumber('3s')); // false


browser
const { isNumber } from "is-number-ts";
console.log(isNumber('3')); // true

Tests

Jasmine is used for the unit tests. npm run test

Releases

No releases published

Packages

No packages published