in ui/rules.js [61:68]
toString(inputs) {
// TODO: maybe consider restrict the rule a bit more so that we can parse
// description to construct the format function
if (!inputs && this.inputs) {
inputs = this.inputs.map(input => input.value);
}
return this.format(inputs || []);
}