Current section

Files

Jump to
udia assets node_modules mout random randSign.js
Raw

assets/node_modules/mout/random/randSign.js

var randBool = require('./randBool');
/**
* Returns random sign (-1 or 1)
*/
function randomSign() {
return randBool()? 1 : -1;
}
module.exports = randomSign;