Current File : //proc/self/root/proc/self/root/usr/lib/node_modules/bower/lib/node_modules/mout/random/randBit.js
var randBool = require('./randBool');

    /**
     * Returns random bit (0 or 1)
     */
    function randomBit() {
        return randBool()? 1 : 0;
    }

    module.exports = randomBit;