Skip to content

Instantly share code, notes, and snippets.

@slikts
Created July 4, 2018 09:06
Show Gist options
  • Save slikts/549068632bdd2587b44da62c4f4196ff to your computer and use it in GitHub Desktop.
Save slikts/549068632bdd2587b44da62c4f4196ff to your computer and use it in GitHub Desktop.
const zip = (xs, ys) => xs.slice(0, Math.min(xs.length, ys.length)).map((x, i) => [x, ys[i]]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment