Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

iszero

curtiszimmerman24GPL-3.01.0.0

Test if given number is zero.

zero, test, number

readme

iszero

Test if given thing is a number with a value of zero.

Usage

var isZero = require('iszero');

console.log( isZero(0) ); // true
console.log( isZero(1) ); // false

// special feature: also works with non-numeric input
console.log( isZero(' ') ); // false!

Installation

With npm do:

$ npm install iszero

Contributions

Contributions are welcome, however PRs that are mostly stylistic or semantic in nature will not be accepted.

License

GPLv3