0.1.3 • Published 10 years ago

variations-stream v0.1.3

Weekly downloads
170
License
-
Repository
github
Last release
10 years ago

variations-stream

A readable stream that generates all the variations (with repetitions) of a set.

NPM version Build Status Downloads

Install

Node.js

npm install variations-stream

Usage

var variationsStream = require('variations-stream');

variationsStream('abc', 2)
  .on('data', function(comb) {
    console.log(comb);
  });

/* Prints:

a
b
c
aa
ba
ca
ab
bb
cb
ac
bc
cc

*/

Credits