0.1.0 • Published 9 years ago

option-multiplexer v0.1.0

Weekly downloads
1,376
License
-
Repository
github
Last release
9 years ago

option-multiplexer

Create combinations of configurations from an initial set of options.

var multiplex = require('option-multiplexer');

var choices = {
	cheese: [ 'swiss', 'gouda', 'cheddar' ],
	meat: [ 'salami', 'chicken' ],
	bread: [ 'flatbread', 'white', 'italian' ]
};

var sandwiches = multiplex(choices);

console.log(sandwiches);