feature(util) checkExt: match -> test

This commit is contained in:
coderaiser 2014-08-22 08:44:30 -04:00
parent 921e206d56
commit e4cf58b433

View file

@ -112,7 +112,7 @@
});
regExp = new RegExp(regStr, 'i');
isMatch = name.match(regExp);
isMatch = regExp.test(name);
break;