Create an array of string combinations
Create string combinations. Optionally given a set of characters and rule. It is useful for creating fake data or finding package names
var combin = require('combin')
// All 3 letter combinations with vowel in center:
combin(3, function (item) {
return 'aeiou'.indexOf(item[1]) !== -1
})
$ npm install --save combin
Create a an array of string combinations, from the characters in set
, and filtered by a rule
function
length
(Number
): The length of each item. e.g.,2
would produce['aa', 'ab', ...]
set
(String
): A set of characters that make up the combinationsrule
(Function
): A function that filters the combinations
combin(3)
// [ 'aaa', 'aab', 'aac', ..., 'zzx', 'zzy', 'zzz' ]
combin(2, '01')
// [ '00', '01', '10', '11' ]
combin(2, 'abc', x => x[0] !== 'a')
// [ 'ba', 'bb', 'bc', 'ca', 'cb', 'cc' ]
MIT © Jamen Marz
[][package] [][package] [][package] [][package] [package]: https://npmjs.com/package/combin