@nkcmr/bool
v1.1.0
Published
cast damn near anything to a logical boolean
Downloads
6
Readme
bool
cast truthy stuff to a boolean value
var bool = require('@nkcmr/bool')
bool('true') // => true
bool('yes') // => true
bool('no') // => false
bool('false') // => false
bool(0) // => false
bool(1) // => true
bool(-1) // => false
bool({}) // => false
bool({ foo: 'bar' }) // => true
theres more, check the code. it is pretty brief, but handy.