UNPKG

218 BJavaScriptView Raw
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