1.0.0 • Published 8 years ago

unzip-array v1.0.0

Weekly downloads
2
License
ISC
Repository
github
Last release
8 years ago

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]]
1.0.0

8 years ago