Packages

A web application in pursuit of meaning in life.

Retired package: Complete rewrite, scratch old versions

Current section

Files

Jump to
udia assets node_modules mout random randBool.js
Raw

assets/node_modules/mout/random/randBool.js

var random = require('./random');
/**
* returns a random boolean value (true or false)
*/
function randBool(){
return random() >= 0.5;
}
module.exports = randBool;