Skip to content

Commit b08f1a3

Browse files
committed
Disable minimizing in Trie class
We can re-enable it once the upstream bugs are fixed: devongovett#31
1 parent 7ef10ae commit b08f1a3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/trie.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ class Trie {
4242
* @return {State} - the starting state of the minimal DFA
4343
*/
4444
minimize() {
45-
return minimize(this.root);
45+
// TODO: Re-enable minimizing once the upstream bugs are fixed:
46+
// https://github.com/devongovett/regexgen/issues/31
47+
return this.root;
4648
}
4749

4850
/**

0 commit comments

Comments
 (0)