Concat all the inputs in one output.
Inputs depend on the options passed in the constructor.
Array of inputs in the order you want them to be concatenated.
var concat = Matis.tools.ConcatString(['prefix', 'radical', 'suffix']);
concat.exec(
{
prefix: "<",
radical: "my-tag",
suffix: ">"
},
function(outputs) {
console.log(outputs.text);
}
);