UNPKG

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