5 lines
107 B

module.exports = function(fn) {
return function(a, b, c) {
return fn.apply(null, arguments);
};
};