Skip to content

Commit

Permalink
[pkg] Update eslint to version 5.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lpinca committed Oct 29, 2018
1 parent 45f817b commit bc0f8ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/extension.js
Expand Up @@ -64,7 +64,7 @@ function parse (header) {
if (extensionName === undefined) {
if (end === -1 && tokenChars[code] === 1) {
if (start === -1) start = i;
} else if (code === 0x20/* ' ' */|| code === 0x09/* '\t' */) {
} else if (code === 0x20/* ' ' */ || code === 0x09/* '\t' */) {
if (end === -1 && start !== -1) end = i;
} else if (code === 0x3b/* ';' */ || code === 0x2c/* ',' */) {
if (start === -1) {
Expand Down Expand Up @@ -103,7 +103,7 @@ function parse (header) {
}

start = end = -1;
} else if (code === 0x3d/* '=' */&& start !== -1 && end === -1) {
} else if (code === 0x3d/* '=' */ && start !== -1 && end === -1) {
paramName = header.slice(start, i);
start = end = -1;
} else {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -33,7 +33,7 @@
"devDependencies": {
"benchmark": "~2.1.2",
"bufferutil": "~4.0.0",
"eslint": "~5.6.1",
"eslint": "~5.8.0",
"eslint-config-standard": "~12.0.0",
"eslint-plugin-import": "~2.14.0",
"eslint-plugin-node": "~8.0.0",
Expand Down

0 comments on commit bc0f8ab

Please sign in to comment.