1.js 101 B

12345
  1. module.exports = function(fn) {
  2. return function(a) {
  3. return fn.apply(null, arguments);
  4. };
  5. };