Advertisement
boris-ivanov

Untitled

Jul 9th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. const zip = () => {
  2. let zipped = utils.zip([['a', 'b'], [1, 2], [true, false]]);
  3.  
  4. console.log(zipped);
  5. // => [['a', 1, true], ['b', 2, false]]
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement