JSPM

is-positive

3.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 27097
  • Score
    100M100P100Q129923F
  • License MIT

Check if something is a positive number

Package Exports

  • is-positive

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (is-positive) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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.

  • is-negative - Check if something is a negative number

License

MIT © Kevin Martensson