We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ef10ae commit b08f1a3Copy full SHA for b08f1a3
src/trie.js
@@ -42,7 +42,9 @@ class Trie {
42
* @return {State} - the starting state of the minimal DFA
43
*/
44
minimize() {
45
- return minimize(this.root);
+ // TODO: Re-enable minimizing once the upstream bugs are fixed:
46
+ // https://github.com/devongovett/regexgen/issues/31
47
+ return this.root;
48
}
49
50
/**
0 commit comments