GoScrobble/web/node_modules/arity-n/4.js

6 lines
110 B
JavaScript
Raw Permalink Normal View History

2022-04-25 02:47:15 +00:00
module.exports = function(fn) {
return function(a, b, c, d) {
return fn.apply(null, arguments);
};
};