04f7aa52dd81cd2939a9e33e862af5f9c74d4844
[platform/framework/web/crosswalk-tizen.git] /
1 var randBool = require('./randBool');
2
3     /**
4      * Returns random bit (0 or 1)
5      */
6     function randomBit() {
7         return randBool()? 1 : 0;
8     }
9
10     module.exports = randomBit;
11