| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -83,7 +83,6 @@ overrides: | |||
| 83 | 83 | - node-api/*/*.js | |
| 84 | 84 | - parallel/*.js | |
| 85 | 85 | - parallel/*.mjs | |
| 86 | - - pseudo-tty/*.js | ||
| 87 | 86 | - pummel/*.js | |
| 88 | 87 | - sequential/*.js | |
| 89 | 88 | - sequential/*.mjs | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -10,7 +10,7 @@ console.log('%s q', 'string'); | |||
| 10 | 10 | console.log('%o with object format param', { foo: 'bar' }); | |
| 11 | 11 | ||
| 12 | 12 | console.log( | |
| 13 | - new Error('test\n at abc (../fixtures/node_modules/bar.js:4:4)\nfoobar') | ||
| 13 | + new Error('test\n at abc (../fixtures/node_modules/bar.js:4:4)\nfoobar'), | ||
| 14 | 14 | ); | |
| 15 | 15 | ||
| 16 | 16 | try { | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -7,7 +7,7 @@ const readline = require('readline'); | |||
| 7 | 7 | ||
| 8 | 8 | const rl = readline.createInterface({ | |
| 9 | 9 | input: process.stdin, | |
| 10 | - output: process.stdout | ||
| 10 | + output: process.stdout, | ||
| 11 | 11 | }); | |
| 12 | 12 | ||
| 13 | 13 | rl.write('text'); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -17,7 +17,7 @@ repl.start('> '); | |||
| 17 | 17 | terminal: true, | |
| 18 | 18 | input: stream, | |
| 19 | 19 | output: process.stdout, | |
| 20 | - useColors: false | ||
| 20 | + useColors: false, | ||
| 21 | 21 | }); | |
| 22 | 22 | ||
| 23 | 23 | replServer.on('close', common.mustCall()); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -15,5 +15,5 @@ assert.throws( | |||
| 15 | 15 | '+ {}\n' + | |
| 16 | 16 | '- {\n' + | |
| 17 | 17 | '- foo: \'bar\'\n' + | |
| 18 | - '- }' | ||
| 18 | + '- }', | ||
| 19 | 19 | }); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -8,11 +8,11 @@ process.stderr.columns = 20; | |||
| 8 | 8 | // Confirm that there is no position indicator. | |
| 9 | 9 | assert.throws( | |
| 10 | 10 | () => { assert.strictEqual('a'.repeat(30), 'a'.repeat(31)); }, | |
| 11 | - (err) => !err.message.includes('^') | ||
| 11 | + (err) => !err.message.includes('^'), | ||
| 12 | 12 | ); | |
| 13 | 13 | ||
| 14 | 14 | // Confirm that there is a position indicator. | |
| 15 | 15 | assert.throws( | |
| 16 | 16 | () => { assert.strictEqual('aaaa', 'aaaaa'); }, | |
| 17 | - (err) => err.message.includes('^') | ||
| 17 | + (err) => err.message.includes('^'), | ||
| 18 | 18 | ); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -10,7 +10,7 @@ child_process.spawnSync(process.execPath, [ | |||
| 10 | 10 | ||
| 11 | 11 | const { stdout } = child_process.spawnSync('stty', { | |
| 12 | 12 | stdio: ['inherit', 'pipe', 'inherit'], | |
| 13 | - encoding: 'utf8' | ||
| 13 | + encoding: 'utf8', | ||
| 14 | 14 | }); | |
| 15 | 15 | ||
| 16 | 16 | if (stdout.match(/-echo\b/)) { | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -15,7 +15,7 @@ proc.stdout.on('data', common.mustCall(() => { | |||
| 15 | 15 | proc.on('exit', common.mustCall(() => { | |
| 16 | 16 | const { stdout } = child_process.spawnSync('stty', { | |
| 17 | 17 | stdio: ['inherit', 'pipe', 'inherit'], | |
| 18 | - encoding: 'utf8' | ||
| 18 | + encoding: 'utf8', | ||
| 19 | 19 | }); | |
| 20 | 20 | ||
| 21 | 21 | if (stdout.match(/-echo\b/)) { | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -11,7 +11,7 @@ child_process.spawnSync(process.execPath, [ | |||
| 11 | 11 | ||
| 12 | 12 | const { stdout } = child_process.spawnSync('stty', { | |
| 13 | 13 | stdio: ['inherit', 'pipe', 'inherit'], | |
| 14 | - encoding: 'utf8' | ||
| 14 | + encoding: 'utf8', | ||
| 15 | 15 | }); | |
| 16 | 16 | ||
| 17 | 17 | if (stdout.match(/-echo\b/)) { | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -14,7 +14,7 @@ if (process.env.CHILD === 'true') { | |||
| 14 | 14 | ['--trace-sigint', __filename], | |
| 15 | 15 | { | |
| 16 | 16 | env: { ...process.env, CHILD: 'true' }, | |
| 17 | - stdio: 'inherit' | ||
| 17 | + stdio: 'inherit', | ||
| 18 | 18 | }); | |
| 19 | 19 | cp.on('exit', mustCall((code, signal) => { | |
| 20 | 20 | assert.strictEqual(signal, null); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments