Skip to content

mock-end/random-bool

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

Return a random boolean value (true or false).

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published