regexp-tree icon indicating copy to clipboard operation
regexp-tree copied to clipboard

DFA: implement prefix match

Open DmitrySoshnikov opened this issue 7 years ago • 0 comments

These should match:

const {fa} = require('regexp-tree');

fa.prefixMatch(/ab/, 'a'); // true
fa.prefixMatch(/ab/, 'ab'); // true
fa.prefixMatch(/ab/, ''); // true

DmitrySoshnikov avatar Jan 17 '18 00:01 DmitrySoshnikov