fix(util) getRegExp

This commit is contained in:
coderaiser 2015-02-11 10:06:25 -05:00
parent cc1f856bc2
commit e59745c22c

View file

@ -241,7 +241,7 @@
wildcard = '^' + wildcard /* search from start of line */
.replace('.', '\\.')
.replace('*', '.*')
.replace('?', '.?\\');
.replace('?', '.?');
wildcard += '$'; /* search to end of line */