between-range
between-range
check if a given number is between two values
API
var between = - between(value, number1, number2)
Usage
check if a number is inside of the passed range
var inside = // should return truevar notInside = // should return falseDevelopment
this projet has been set up with a precommit that forces you to follow a code style, no jshint issues and 100% of code coverage before commit
to run test
npm testto run jshint
npm run jshintto run code style
npm run code-styleto run check code coverage
npm run check-coverageto open the code coverage report
npm run open-coverage