is-its-over-9000
v0.1.6
Published
Return true if given number is over 9000
Downloads
19
Maintainers
Readme
is-its-over-9000

Return true if given number is over 9000
Installation and Usage
is-its-over-9000 supports stable versions of Node.js 8.15.0 and later. You can install
is-its-over-9000 globally or in your project's node_modules folder.
To install the latest version on npm globally (might require sudo;
learn how to fix this):
npm install -i is-its-over-9000Usage
const isItsOver9000 = require("is-its-over-9000");
const num1 = 9999;
const num2 = 8000;
console.log(isItsOver9000(num1)); // true
console.log(isItsOver9000(num2)); // falseTesting
Run the test suite:
npm test