b81bf0a83d6222049cdba4141596dc44f3f5bed1
[platform/framework/web/crosswalk-tizen.git] /
1
2
3     /**
4      * Returns a function that call a method on the passed object
5      */
6     function func(name){
7         return function(obj){
8             return obj[name]();
9         };
10     }
11
12     module.exports = func;
13
14