diff --git a/lib/util.js b/lib/util.js index 713d7a19..0d2faaeb 100644 --- a/lib/util.js +++ b/lib/util.js @@ -312,21 +312,6 @@ return str; }; - /** - * function convert name: rm: '(, ), -, " "' - * - * @name - * convert - */ - this.convertName = function(name) { - var conv = name && name.toLowerCase(); - - conv = Util.rmStr(conv, ['(', ')']); - conv = Util.replaceStr(conv, ' ', '-'); - - return conv; - }; - this.escapeRegExp = function(str) { var isStr = Util.type.string(str);