Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions lib/internal/child_process.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const { validateString } = require('internal/validators');
const EventEmitter = require('events');
const net = require('net');
const dgram = require('dgram');
const util = require('util');
const inspect = require('internal/util/inspect').inspect;
const assert = require('internal/assert');

const { Process } = internalBinding('process_wrap');
Expand Down Expand Up @@ -887,7 +887,7 @@ function _validateStdio(stdio, sync) {
throw new ERR_INVALID_OPT_VALUE('stdio', stdio);
}
} else if (!Array.isArray(stdio)) {
throw new ERR_INVALID_OPT_VALUE('stdio', util.inspect(stdio));
throw new ERR_INVALID_OPT_VALUE('stdio', inspect(stdio));
}

// At least 3 stdio will be created
Expand Down Expand Up @@ -967,12 +967,12 @@ function _validateStdio(stdio, sync) {
} else if (isArrayBufferView(stdio) || typeof stdio === 'string') {
if (!sync) {
cleanup();
throw new ERR_INVALID_SYNC_FORK_INPUT(util.inspect(stdio));
throw new ERR_INVALID_SYNC_FORK_INPUT(inspect(stdio));
}
} else {
// Cleanup
cleanup();
throw new ERR_INVALID_OPT_VALUE('stdio', util.inspect(stdio));
throw new ERR_INVALID_OPT_VALUE('stdio', inspect(stdio));
}

return acc;
Expand Down