Current File : //usr/lib/node_modules/bower/lib/node_modules/mout/src/random/randSign.js
define(['./randBool'], function (randBool) {

    /**
     * Returns random sign (-1 or 1)
     */
    function randomSign() {
        return randBool()? 1 : -1;
    }

    return randomSign;
});