Skip to content

Commit a7b3e06

Browse files
Trottaddaleax
authored andcommitted
lib: modify destructuring for indentation
ESLint 4.3.0 flags an extra indentation issue that affects two of our destructuring assignments in `lib`. This is a whitespace-only update to comply prior to updating. PR-URL: #14417 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Teddy Katz <[email protected]> Reviewed-By: Roman Reiss <[email protected]> Reviewed-By: Refael Ackermann <[email protected]>
1 parent 1c6135f commit a7b3e06

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

lib/async_hooks.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ var tmp_async_hook_fields = null;
4040
// async execution. These are tracked so if the user didn't include callbacks
4141
// for a given step, that step can bail out early.
4242
const { kInit, kBefore, kAfter, kDestroy, kTotals, kCurrentAsyncId,
43-
kCurrentTriggerId, kAsyncUidCntr, kInitTriggerId } = async_wrap.constants;
43+
kCurrentTriggerId, kAsyncUidCntr,
44+
kInitTriggerId } = async_wrap.constants;
4445

4546
const { async_id_symbol, trigger_id_symbol } = async_wrap;
4647

lib/child_process.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
const util = require('util');
2525
const { deprecate, convertToValidSignal } = require('internal/util');
2626
const { createPromise,
27-
promiseResolve, promiseReject } = process.binding('util');
27+
promiseResolve, promiseReject } = process.binding('util');
2828
const debug = util.debuglog('child_process');
2929

3030
const uv = process.binding('uv');

0 commit comments

Comments
 (0)