unzip-array

1.0.0 • Public • Published

unzip-array

A javascript implementation of unzip function

Install the module with: npm install unzip-array

Example

var unzip = require('unzip-array');
var result = unzip([[1, 2], [8, 33], [4, 9]]);
console.log(result); 
// -> [[1, 8, 4], [2, 33, 9]]

Readme

Keywords

Package Sidebar

Install

npm i unzip-array

Weekly Downloads

0

Version

1.0.0

License

ISC

Last publish

Collaborators

  • vikramcse