包详细信息

to-boolean-x

Xotic75022.7kMIT2.1.1

Converts argument to a value of type Boolean.

toBoolean, module, javascript, nodejs

自述文件

Travis status Dependency status devDependency status npm version jsDelivr hits bettercodehub score Coverage Status

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