From 29b07cdedfa3bbd97bc28ecbbb5ce817f2201105 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Wed, 4 Dec 2013 14:56:20 +0000 Subject: [PATCH] chore(cloudfunc) add " " --- lib/cloudfunc.js | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/lib/cloudfunc.js b/lib/cloudfunc.js index b32ecef3..a073a04f 100644 --- a/lib/cloudfunc.js +++ b/lib/cloudfunc.js @@ -147,16 +147,16 @@ var Util; /* Рекомендации гугла советуют вместо string[3] * использовать string.charAt(3) */ - /* - http://google-styleguide.googlecode.com/svn/trunk/javascriptguide.xml?showone=Standards_features#Standards_features - - Always preferred over non-standards featuresFor - maximum portability and compatibility, always - prefer standards features over non-standards - features (e.g., string.charAt(3) over string[3] - and element access with DOM functions instead - of using an application-specific shorthand). - */ + /* + http://google-styleguide.googlecode.com/svn/trunk/javascriptguide.xml?showone=Standards_features#Standards_features + + Always preferred over non-standards featuresFor + maximum portability and compatibility, always + prefer standards features over non-standards + features (e.g., string.charAt(3) over string[3] + and element access with DOM functions instead + of using an application-specific shorthand). + */ /* Переводим в двоичную систему */ var lOwner = ( pPerm_s[0] - 0 ).toString(2), lGroup = ( pPerm_s[1] - 0 ).toString(2), @@ -175,7 +175,7 @@ var Util; ( lAll[0]- 0 > 0 ? 'r' : '-' ) + ( lAll[1]- 0 > 0 ? 'w' : '-' ) + ( lAll[2]- 0 > 0 ? 'x' : '-' ); - + return lPermissions; };