UNPKG

underscore-es

Version:

javaScript's functional programming helper library for ES6 and beyond.

11 lines (8 loc) 289 B
// `_zip` : an array's function // ----------------------------- import _unzip from './unzip'; import {restArgs} from './_internal'; // Zip together multiple lists into a single array -- elements that share // an index go together. var _zip = restArgs(_unzip); export {_zip as default};