Return a random boolean value (true or false).
npm install random-bool> Return a random boolean value (true or false).



```
$ npm install --save random-bool
> For more use-cases see the tests.
`js
var randomBool = require('random-bool');
// API
// - randomBool([options])
// options
// - likelihood
`
The default likelihood of success (returning true) is 50%:
`js`
randomBool();
// => true
Can optionally specify the likelihood in percent:
`js`
randomBool({ likelihood: 30 });
// => false
In this case only a 30% likelihood of true, and a 70% likelihood of false`.
- random-integral - Return a random integer.
- random-natural - Return a random natural number.
- random-decimal - Return a random decimal.
- random-floating - Return a random floating point number.
- random-index - Return a random array-like index.
- random-binary - Return a random binary number.
- random-octal - Return a random octal number.
- random-hexadecimal - Return a random hexadecimal number.
- random-unicode - Return a random unicode.
- random-char - Return a random char.
Pull requests and stars are highly welcome.
For bugs and feature requests, please create an issue.