mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00
benchmark,test,lib: remove extra spaces
In preparation for stricter linting, remove extra spaces. PR-URL: https://github.com/nodejs/node/pull/6645 Reviewed-By: Michaël Zasso <mic.besace@gmail.com> Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: Roman Reiss <me@silverwind.io>
This commit is contained in:
parent
e16e611089
commit
a56da51a38
30 changed files with 69 additions and 69 deletions
|
@ -58,7 +58,7 @@ QueryString.unescapeBuffer = function(s, decodeSpaces) {
|
|||
case 2: // Second hex digit
|
||||
state = 0;
|
||||
if (c >= 48/*0*/ && c <= 57/*9*/) {
|
||||
m = c - 48/*0*/;
|
||||
m = c - 48/*0*/;
|
||||
} else if (c >= 65/*A*/ && c <= 70/*F*/) {
|
||||
m = c - 65/*A*/ + 10;
|
||||
} else if (c >= 97/*a*/ && c <= 102/*f*/) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue