It would be nice to have configure method chainable, so Comb can be used this way:
var output = new Comb().configure(config).processString(input);
Also, since configure(config) is required, we could call it right from constructor:
var output = new Comb(config).processString(input);