Skip to content

Commit d456147

Browse files
cjihrigMylesBorins
authored andcommitted
child_process: remove unreachable code
_convertCustomFds() is only called from normalizeSpawnArguments(), which always provides an options object. Therefore, there is no need to check for options in _convertCustomFds(). PR-URL: #9307 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Santiago Gimeno <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 836714e commit d456147

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/child_process.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ var _deprecatedCustomFds = internalUtil.deprecate(function(options) {
300300
'Use options.stdio instead.');
301301

302302
function _convertCustomFds(options) {
303-
if (options && options.customFds && !options.stdio) {
303+
if (options.customFds && !options.stdio) {
304304
_deprecatedCustomFds(options);
305305
}
306306
}

0 commit comments

Comments
 (0)