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