6 lines
101 B

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