summaryrefslogtreecommitdiff
path: root/lib/child_process.js
diff options
context:
space:
mode:
authorGus Caplan <me@gus.host>2018-09-22 09:49:52 -0500
committerDaniel Bevenius <daniel.bevenius@gmail.com>2018-10-04 11:55:34 +0200
commite7f710c1d4729890806610e5450d7a0edfb4ac11 (patch)
tree2190bc3bca442a3f485a8c48dbf27bb9a16e099a /lib/child_process.js
parent9800fd7aaa7226fff3f21edd7f77f563b9a69753 (diff)
downloadandroid-node-v8-e7f710c1d4729890806610e5450d7a0edfb4ac11.tar.gz
android-node-v8-e7f710c1d4729890806610e5450d7a0edfb4ac11.tar.bz2
android-node-v8-e7f710c1d4729890806610e5450d7a0edfb4ac11.zip
bootstrapper: move internalBinding to NativeModule
internalBinding is used so often that it should just automatically be available for usage in internals. PR-URL: https://github.com/nodejs/node/pull/23025 Refs: https://github.com/nodejs/node/commit/2a9eb31 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Diffstat (limited to 'lib/child_process.js')
-rw-r--r--lib/child_process.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/child_process.js b/lib/child_process.js
index 2962f5cf05..7ac3a3bcc0 100644
--- a/lib/child_process.js
+++ b/lib/child_process.js
@@ -28,7 +28,6 @@ const {
const { isArrayBufferView } = require('internal/util/types');
const debug = util.debuglog('child_process');
const { Buffer } = require('buffer');
-const { internalBinding } = require('internal/bootstrap/loaders');
const { Pipe, constants: PipeConstants } = internalBinding('pipe_wrap');
const {
ERR_INVALID_ARG_VALUE,