Travis status Dependency status devDependency status npm version ## to-boolean-x Converts argument to a value of type Boolean. **Version**: 1.0.1 **Author**: Xotic750 **License**: [MIT](<https://opensource.org/licenses/MIT>) **Copyright**: Xotic750 ### `module.exports(value)` ⇒ boolean ⏏ The abstract operation ToBoolean converts argument to a value of type Boolean. **Kind**: Exported function **Returns**: boolean - 'true' if value is truthy; otherwise 'false'. | Param | Type | Description | | --- | --- | --- | | value | \* | The value to be converted. | **Example** ```js var toBoolean = require('to-boolean-x'); toBoolean(null); // false toBoolean(''); // false toBoolean(1); // true toBoolean('0'); // true ```