fix(util) rmStr: str.replace -> Util.replace

This commit is contained in:
coderaiser 2014-05-10 11:17:58 -04:00
parent 14f312e2ca
commit 4d2ed0542f

View file

@ -485,7 +485,7 @@
strArray.push(substr);
strArray.forEach(function(strItem) {
str = str.replace(strItem, '');
str = Util.replace(str, strItem, '');
});
}