Skip to content

vikramcse/unzip-array

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

A javascript implementation of unzip function

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published