3.1.0 • Published 8 years ago

is-positive v3.1.0

Weekly downloads
5,904
License
MIT
Repository
github
Last release
8 years ago

is-positive Build Status

Check if something is a positive number

Install

$ npm install --save is-positive

Usage

const isPositive = require('is-positive');

isPositive(1);
//=> true

isPositive(0);
//=> false

isPositive(-1);
//=> false

isPositive('1');
//=> false

isPositive(Number(1))
//=> true

Note: This module doesn't consider 0 to be a positive number and doesn't distinguish between -0 and 0. If you want to detect 0, use the positive-zero module.

Related

License

MIT © Kevin Martensson