booler/README.md

21 lines
282 B
Markdown
Raw Normal View History

2019-10-31 09:07:04 +07:00
# Booler: Convert any values to Boolean.
Convert string/values to Boolean in JavaScript.
# Installing
# Example
```js
const booler = require('booler')
console.log(booler('f')) // return false
console.log(booler('t')) // return true
```
# Run Test
```shell
$ npm run test
```