7fife-backend/node_modules/underscore/cjs/zip.js

9 lines
241 B
JavaScript
Raw Permalink Normal View History

2024-03-07 13:01:44 +00:00
var restArguments = require('./restArguments.js');
var unzip = require('./unzip.js');
// Zip together multiple lists into a single array -- elements that share
// an index go together.
var zip = restArguments(unzip);
module.exports = zip;