UNPKG

mout

Version:

Modular Utilities

11 lines (9 loc) 178 B
/** * Returns a function that call a method on the passed object */ function func(name) { return function(obj) { return obj[name](); }; } export default func;