| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -75,7 +75,6 @@ overrides: | |||
| 75 | 75 | - es-module/*.js | |
| 76 | 76 | - es-module/*.mjs | |
| 77 | 77 | - js-native-api/*/*.js | |
| 78 | - - known_issues/*.js | ||
| 79 | 78 | - parallel/*.js | |
| 80 | 79 | - parallel/*.mjs | |
| 81 | 80 | - pummel/*.js | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -51,6 +51,6 @@ if (cluster.isPrimary) { | |||
| 51 | 51 | socket1.on('error', PRT1 === 0 ? () => {} : assert.fail); | |
| 52 | 52 | socket1.bind( | |
| 53 | 53 | { address: common.localhostIPv4, port: PRT1, exclusive: false }, | |
| 54 | - () => process.send({ message: 'success', port1: socket1.address().port }) | ||
| 54 | + () => process.send({ message: 'success', port1: socket1.address().port }), | ||
| 55 | 55 | ); | |
| 56 | 56 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -26,7 +26,7 @@ server.listen(0, () => { | |||
| 26 | 26 | http.request({ | |
| 27 | 27 | port: server.address().port, | |
| 28 | 28 | path: expected, | |
| 29 | - method: 'GET' | ||
| 29 | + method: 'GET', | ||
| 30 | 30 | }, common.mustCall(function(res) { | |
| 31 | 31 | res.resume(); | |
| 32 | 32 | })).on('error', function(e) { | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -11,7 +11,7 @@ const fixture = path('is-object.js'); | |||
| 11 | 11 | const r = repl.start({ | |
| 12 | 12 | input: inputStream, | |
| 13 | 13 | output: outputStream, | |
| 14 | - useGlobal: false | ||
| 14 | + useGlobal: false, | ||
| 15 | 15 | }); | |
| 16 | 16 | ||
| 17 | 17 | let output = ''; | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -14,7 +14,7 @@ if (process.argv[2] === 'child') { | |||
| 14 | 14 | const proc = spawn( | |
| 15 | 15 | process.execPath, | |
| 16 | 16 | [__filename, 'child'], | |
| 17 | - { stdio: 'ignore' } | ||
| 17 | + { stdio: 'ignore' }, | ||
| 18 | 18 | ); | |
| 19 | 19 | // To double-check this test, set stdio to 'pipe' and uncomment the line below. | |
| 20 | 20 | // proc.stderr.pipe(process.stderr); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -6,7 +6,7 @@ const url = require('url'); | |||
| 6 | 6 | const assert = require('assert'); | |
| 7 | 7 | const fixtures = require('../common/fixtures'); | |
| 8 | 8 | const tests = require( | |
| 9 | - fixtures.path('wpt', 'url', 'resources', 'urltestdata.json') | ||
| 9 | + fixtures.path('wpt', 'url', 'resources', 'urltestdata.json'), | ||
| 10 | 10 | ); | |
| 11 | 11 | ||
| 12 | 12 | let failed = 0; | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -8,7 +8,7 @@ const sym1 = Symbol('1'); | |||
| 8 | 8 | const sym2 = Symbol('2'); | |
| 9 | 9 | const sandbox = { | |
| 10 | 10 | a: true, | |
| 11 | - [sym1]: true | ||
| 11 | + [sym1]: true, | ||
| 12 | 12 | }; | |
| 13 | 13 | Object.defineProperty(sandbox, 'b', { value: true }); | |
| 14 | 14 | Object.defineProperty(sandbox, sym2, { value: true }); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -8,7 +8,7 @@ const sym1 = Symbol('1'); | |||
| 8 | 8 | const sym2 = Symbol('2'); | |
| 9 | 9 | const sandbox = { | |
| 10 | 10 | a: true, | |
| 11 | - [sym1]: true | ||
| 11 | + [sym1]: true, | ||
| 12 | 12 | }; | |
| 13 | 13 | Object.defineProperty(sandbox, 'b', { value: true }); | |
| 14 | 14 | Object.defineProperty(sandbox, sym2, { value: true }); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -8,7 +8,7 @@ const sym1 = Symbol('1'); | |||
| 8 | 8 | const sym2 = Symbol('2'); | |
| 9 | 9 | const sandbox = { | |
| 10 | 10 | a: true, | |
| 11 | - [sym1]: true | ||
| 11 | + [sym1]: true, | ||
| 12 | 12 | }; | |
| 13 | 13 | Object.defineProperty(sandbox, 'b', { value: true }); | |
| 14 | 14 | Object.defineProperty(sandbox, sym2, { value: true }); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -36,11 +36,11 @@ for (let i = 0; i < 4; i++) { | |||
| 36 | 36 | { | |
| 37 | 37 | hrtime, | |
| 38 | 38 | nextTick, | |
| 39 | - loop | ||
| 39 | + loop, | ||
| 40 | 40 | }, | |
| 41 | - { timeout: common.platformTimeout(10) } | ||
| 41 | + { timeout: common.platformTimeout(10) }, | ||
| 42 | 42 | ); | |
| 43 | 43 | }, { | |
| 44 | - code: 'ERR_SCRIPT_EXECUTION_TIMEOUT' | ||
| 44 | + code: 'ERR_SCRIPT_EXECUTION_TIMEOUT', | ||
| 45 | 45 | }); | |
| 46 | 46 | } | |
| Back | FazBrowse Home | New Git URL |
0 commit comments