mirror of
https://github.com/idanoo/GoScrobble
synced 2025-07-06 16:12:19 +00:00
5 lines
113 B
JavaScript
5 lines
113 B
JavaScript
module.exports = function(fn) {
|
|
return function(a, b, c, d, e) {
|
|
return fn.apply(null, arguments);
|
|
};
|
|
};
|