From 50f45fffc1951c90bc87a0e22ca5a9990b653a8d Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Fri, 21 Jul 2017 11:34:35 -0700 Subject: 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 Reviewed-By: Colin Ihrig Reviewed-By: Teddy Katz Reviewed-By: Roman Reiss Reviewed-By: Refael Ackermann --- lib/child_process.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/child_process.js') 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'); -- cgit v1.2.3