UNPKG

202 BJavaScriptView Raw
1var random = require('./random');
2
3 /**
4 * returns a random boolean value (true or false)
5 */
6 function randBool(){
7 return random() >= 0.5;
8 }
9
10 module.exports = randBool;
11
12