1.0.2 • Published 8 years ago

random-bool v1.0.2

Weekly downloads
337
License
MIT
Repository
github
Last release
8 years ago

random-bool

Return a random boolean value (true or false).

MIT License

build:? coverage:?

Install

$ npm install --save random-bool 

Usage

For more use-cases see the tests.

var randomBool = require('random-bool');

// API
// - randomBool([options])

// options
// - likelihood

The default likelihood of success (returning true) is 50%:

randomBool(); 
// => true

Can optionally specify the likelihood in percent:

randomBool({ likelihood: 30 });
// => false

In this case only a 30% likelihood of true, and a 70% likelihood of false.

Related

Contributing

Pull requests and stars are highly welcome.

For bugs and feature requests, please create an issue.