-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make a JS interface for regex2dfa #6
Comments
kpdyer
added a commit
that referenced
this issue
Jun 24, 2014
The following now works: var regex2dfa = require('./.libs/regex2dfa.js');
var regex = "^(a|b)*$";
var dfa = regex2dfa.regex2dfa(regex);
console.log(dfa); and outputs
|
kpdyer
added a commit
that referenced
this issue
Jun 24, 2014
kpdyer
added a commit
that referenced
this issue
Jun 24, 2014
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use emscripten to compile regex2dfa to JS.
The text was updated successfully, but these errors were encountered: