No Description

zip.js 227B

123456789
  1. define(['./restArguments', './unzip'], function (restArguments, unzip) {
  2. // Zip together multiple lists into a single array -- elements that share
  3. // an index go together.
  4. var zip = restArguments(unzip);
  5. return zip;
  6. });