diff --git a/lib/cloudfunc.js b/lib/cloudfunc.js index ff34beb1..fac98396 100644 --- a/lib/cloudfunc.js +++ b/lib/cloudfunc.js @@ -32,19 +32,6 @@ CloudFunc.removeLastSlash = function(pPath){ pPath.substr(pPath, pPath.length-1):pPath; else return pPath; }; -/* - * Функция меняет код символа пробела на пробел - * в переданной строке - * @pPath - строка - */ -CloudFunc.replaceSpaces = function(pPath){ - if(pPath.indexOf('%20')>0){ - do{ - pPath=pPath.replace('%20',' '); - }while(pPath.indexOf('%20')>0); - } - return pPath; -}; /* Функция возвращает заголовок веб страницы */ CloudFunc.setTitle = function(){