smart-boolean
v1.0.1
Published
Convert various values to booleans and check if they are boolean-like.
Downloads
18
Maintainers
Readme
smart-boolean
Convert various values to booleans and check if they are boolean-like.
Installation
Install the package using npm:
npm i smart-booleanOr with yarn:
yarn add smart-booleanUsage
const { boolean, isBooleanable } = require('smart-boolean');
console.log(boolean('yes')); // true
console.log(boolean('maybe')); // false
console.log(isBooleanable('false')); // true
console.log(isBooleanable('123')); // false