randBit.js 191 B

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