fjs.falsy
fjs.falsy returns true if an object can be coerced to false in a boolean context.
Usage
fjs.falsy(obj);Examples
expect(fjs.falsy(false); // => trueexpect(fjs.falsy(null); // => trueexpect(fjs.falsy(true); // => falseexpect(fjs.falsy("abc"); // => false