1.0.1 • Published 9 years ago

combinations-generator v1.0.1

Weekly downloads
98
License
MIT
Repository
github
Last release
9 years ago

Combinations-generator

Return combinations in array uses es6 generators.

Install

npm install combinations-generator

To use this package you must be running node 0.11 for generator support, and must run node with the --harmony flag.

Example

var comb = require("combinations-generator")

var array = ["a", "b", "c"]

var iterator = comb(array, 2);

for (var item of iterator) {
  console.log(item);
}

Output:

[ 'a', 'b' ]
[ 'a', 'c' ]
[ 'b', 'c' ]

If you want to use this in a browser, then you should use browserify.

Credits

(c) 2015 exromany. MIT License