1.0.2 • Published 10 months ago
is-not-true v1.0.2
is-not-true
Returns true if a given boolean is not true, and not true if a given boolean is true
Install
Install with npm
npm install is-not-trueUsage
Use to check if a boolean value is not true (i.e., false)
import isNotTrue from 'is-not-true'
isNotTrue(false);
//=> true
isNotTrue(true)
//=> falseRunning tests
Install dev dependencies:
npm installRun tests
npm run test