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