whaty
v1.0.1
Published
is it truthy or falsy
Downloads
1
Readme
whaty
is it truthy or falsy
example
npm i whaty
const whaty = require('whaty');
// inString
console.log(whaty.inString(true)); // 'truthy'
console.log(whaty.inString(NaN)); // 'falsy'
// inBoolean
console.log(whaty.inBoolean(true)); // true
console.log(whaty.inBoolean(NaN)); // false
api
whaty.inString(thing) returns String
whaty.inBoolean(thing) returns Boolean