1.0.4 • Published 4 years ago

is-not-odd v1.0.4

Weekly downloads
1
License
ISC
Repository
github
Last release
4 years ago

is-not-odd NPM version NPM monthly downloads NPM total downloads

Returns false if the given number is odd, and is an integer that does not exceed the JavaScript MAXIMUM_SAFE_INTEGER.

Sick of complicated conditionals? Think modulus is something from 2001: A Space Odessey? Look no further!

Please consider following this project's author, Sean, and consider starring the project to show your :heart: and support.

Install

Install with npm:

$ npm install --save is-not-odd

Usage

Works with strings or numbers.

const isNotOdd = require('is-not-odd');

console.log(isNotOdd('0')); //=> true
console.log(isNotOdd('2')); //=> true

console.log(isNotOdd(1)); //=> false
console.log(isNotOdd(3)); //=> false

About

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:

$ npm install && npm test

(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)

To generate the readme, run the following command:

$ npm install -g verbose/verb#dev verb-generate-readme && verb

Author

Sean

License

Copyright © 2018, Sean. Released under the MIT License.