zipWith.js 140 B

12345
  1. import { zip } from './zip';
  2. export function zipWith(...otherInputs) {
  3. return zip(...otherInputs);
  4. }
  5. //# sourceMappingURL=zipWith.js.map