diff --git a/lib/util.js b/lib/util.js index e88e8448..bf0dc981 100644 --- a/lib/util.js +++ b/lib/util.js @@ -818,19 +818,6 @@ return ret; }; - this.execOnMatch = function(exp, funcsObj) { - var name, func, match; - - if (funcsObj) - for (name in funcsObj) { - match = name.match(new RegExp(exp)); - func = funcsObj[name]; - - if (match) - Util.exec(func, match); - } - }; - /** * exec function if it exist in object * @pArg