3 lines
79 B
JavaScript
3 lines
79 B
JavaScript
const collectInto = fn => (...args) => fn(args);
|
|
module.exports = collectInto;
|