array-zip

1.0.0 • Public • Published

array-zip Build Status

Merges together the values of each of the arrays.

Install the module with: npm install array-zip

Example

var result = arrayZip([1, 2], ['a', 'b']);
  
console.log(result); // [ [ 1, 'a' ], [ 2, 'b' ] ]

License

Copyright (c) 2014 Fredrik Forsmo
Licensed under the MIT license.

/array-zip/

    Package Sidebar

    Install

    npm i array-zip

    Weekly Downloads

    3

    Version

    1.0.0

    License

    MIT

    Last publish

    Collaborators

    • frozzare