ab932d9d23b9ade11c5a37563458dffdf7f37720
[platform/framework/web/crosswalk-tizen.git] /
1
2
3     /**
4      * Returns a new function that will return the value
5      */
6     function constant(value){
7         return function() {
8             return value;
9         };
10     }
11
12     module.exports = constant;
13
14