npm.io
1.1.0 • Published 11 years ago

@nkcmr/bool

Licence
MIT
Version
1.1.0
Deps
0
Vulns
0
Weekly
0

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.