regexp-tree
regexp-tree copied to clipboard
DFA: implement prefix match
These should match:
const {fa} = require('regexp-tree');
fa.prefixMatch(/ab/, 'a'); // true
fa.prefixMatch(/ab/, 'ab'); // true
fa.prefixMatch(/ab/, ''); // true