1-liners
Version:
Useful oneliners and shorthand functions
31 lines (28 loc) • 511 B
JavaScript
/**
* @module 1-liners/implode
*
* @description
*
* Collapse a list of arguments into an array of arguments.
*
* @example
*
* const implode = require('1-liners/implode');
*
* const f = (a, b) => a + b;
*
* [
* [1, 2],
* [3, 4],
* [5, 6],
* ].map(implode(f)); // => [3, 7, 11]
*
*/
;
exports.__esModule = true;
exports["default"] = function (func) {
return function (args) {
return func.apply(undefined, args);
};
};
module.exports = exports["default"];