JSPM

is-positive

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 12187
  • Score
    100M100P100Q134163F
  • License MIT

Test if a number is positive

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

Test if a number is positive

Install

$ npm install --save is-positive

Usage

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

isPositive(1);
//=> true

isPositive(0);
//=> true

isPositive(-1);
//=> false

License

MIT © Kevin Martensson