randSign.js 196 B

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