No Description

zip.js 241B

12345678
  1. var restArguments = require('./restArguments.js');
  2. var unzip = require('./unzip.js');
  3. // Zip together multiple lists into a single array -- elements that share
  4. // an index go together.
  5. var zip = restArguments(unzip);
  6. module.exports = zip;