Newton's Preposterous Miscalculation
Unleash awesomeness. Private packages, team management tools, and powerful integrations. Get started with npm Orgs »

to-boolean-x

1.0.3 • Public • Published

Travis status Dependency status devDependency status npm version

to-boolean-x

Converts argument to a value of type Boolean.

Version: 1.0.3
Author: Xotic750 Xotic750@gmail.com
License: 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

var toBoolean = require('to-boolean-x');
 
toBoolean(null); // false
toBoolean(''); // false
toBoolean(1); // true
toBoolean('0'); // true

install

npm i to-boolean-x

Downloadsweekly downloads

20,173

version

1.0.3

license

MIT

homepage

github.com

repository

Gitgithub

last publish

collaborators

  • avatar
Report a vulnerability