unzip-array
v1.0.0
Published
A javascript implementation of unzip function
Downloads
2
Readme
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]]