UNPKG

191 BJavaScriptView Raw
1var randBool = require('./randBool');
2
3 /**
4 * Returns random bit (0 or 1)
5 */
6 function randomBit() {
7 return randBool()? 1 : 0;
8 }
9
10 module.exports = randomBit;
11