1.0.2 • Published 7 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-true
Usage
Use to check if a boolean value is not true (i.e., false
)
import isNotTrue from 'is-not-true'
isNotTrue(false);
//=> true
isNotTrue(true)
//=> false
Running tests
Install dev dependencies:
npm install
Run tests
npm run test