fix(util) execOnMatch: isMatch -> match

This commit is contained in:
coderaiser 2014-03-18 08:41:05 -04:00
parent 9d3e7a84f6
commit d75fb18b62

View file

@ -831,7 +831,7 @@
match = name.match(new RegExp(exp));
func = funcsObj[name];
if (isMatch)
if (match)
Util.exec(func, match);
}
};