summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/async_hooks.js3
-rw-r--r--lib/child_process.js2
2 files changed, 3 insertions, 2 deletions
diff --git a/lib/async_hooks.js b/lib/async_hooks.js
index 39fd319fe5..51039e9f36 100644
--- a/lib/async_hooks.js
+++ b/lib/async_hooks.js
@@ -40,7 +40,8 @@ var tmp_async_hook_fields = null;
// async execution. These are tracked so if the user didn't include callbacks
// for a given step, that step can bail out early.
const { kInit, kBefore, kAfter, kDestroy, kTotals, kCurrentAsyncId,
- kCurrentTriggerId, kAsyncUidCntr, kInitTriggerId } = async_wrap.constants;
+ kCurrentTriggerId, kAsyncUidCntr,
+ kInitTriggerId } = async_wrap.constants;
const { async_id_symbol, trigger_id_symbol } = async_wrap;
diff --git a/lib/child_process.js b/lib/child_process.js
index 77f02a0ed2..a431e00b2f 100644
--- a/lib/child_process.js
+++ b/lib/child_process.js
@@ -24,7 +24,7 @@
const util = require('util');
const { deprecate, convertToValidSignal } = require('internal/util');
const { createPromise,
- promiseResolve, promiseReject } = process.binding('util');
+ promiseResolve, promiseReject } = process.binding('util');
const debug = util.debuglog('child_process');
const uv = process.binding('uv');