d3d35cbc552e6adcf09a7b3adf28c4cf97e9163d
[platform/framework/web/crosswalk-tizen.git] /
1 var random = require('./random');
2
3     /**
4      * returns a random boolean value (true or false)
5      */
6     function randBool(){
7         return random() >= 0.5;
8     }
9
10     module.exports = randBool;
11
12