summaryrefslogtreecommitdiff
path: root/lib/child_process.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2017-07-21 11:34:35 -0700
committerRich Trott <rtrott@gmail.com>2017-07-25 12:21:26 -0700
commit50f45fffc1951c90bc87a0e22ca5a9990b653a8d (patch)
tree40b9d86ff62cf22558f8053e8219229f06f14d86 /lib/child_process.js
parentc5bed4cfc7b64a50fbba4d249bd5a183729d6e7e (diff)
downloadandroid-node-v8-50f45fffc1951c90bc87a0e22ca5a9990b653a8d.tar.gz
android-node-v8-50f45fffc1951c90bc87a0e22ca5a9990b653a8d.tar.bz2
android-node-v8-50f45fffc1951c90bc87a0e22ca5a9990b653a8d.zip
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: https://github.com/nodejs/node/pull/14417 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Teddy Katz <teddy.katz@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Refael Ackermann <refack@gmail.com>
Diffstat (limited to 'lib/child_process.js')
-rw-r--r--lib/child_process.js2
1 files changed, 1 insertions, 1 deletions
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');