No Description

zip.js 217B

123456
  1. import restArguments from './restArguments.js';
  2. import unzip from './unzip.js';
  3. // Zip together multiple lists into a single array -- elements that share
  4. // an index go together.
  5. export default restArguments(unzip);