to-boolean-x
v2.1.1
Published
Converts argument to a value of type Boolean.
Downloads
26,451
Maintainers
Readme
to-boolean-x
Converts argument to a value of type Boolean.
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
import toBoolean from 'to-boolean-x';
console.log(toBoolean(null)); // false
console.log(toBoolean('')); // false
console.log(toBoolean(1)); // true
console.log(toBoolean('0')); // true