Skip to content

Instantly share code, notes, and snippets.

@leoriviera
Created November 5, 2021 16:16
Show Gist options
  • Save leoriviera/343c8804746330c13566bd7b1351599a to your computer and use it in GitHub Desktop.
Save leoriviera/343c8804746330c13566bd7b1351599a to your computer and use it in GitHub Desktop.
A zip function written in TypeScript
export const zip = <P, Q>(
a: P[],
b: Q[]
): [P, Q][] => a.map((k, i) => [k, b[i]]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment