is-max
v1.0.0
Published
Determine if a value is lower than another value
Downloads
1
Readme
is-max
Determine if a value is lower than another value
Install
$ npm install --save is-max
Usage
const isMax = require('is-max');
console.log(isMax('Hello World!', 20));
//=> true
console.log(isMax('Hello', 4));
//=> false
License
MIT © Bruno Queiros