combinations-generator

1.0.1 • Public • Published

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

Dependencies (0)

    Dev Dependencies (2)

    Package Sidebar

    Install

    npm i combinations-generator

    Weekly Downloads

    63

    Version

    1.0.1

    License

    MIT

    Last publish

    Collaborators

    • exromany