File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -164,8 +164,8 @@ The `stdout` and `stderr` arguments passed to the callback will contain the
164164stdout and stderr output of the child process. By default, Node.js will decode
165165the output as UTF-8 and pass strings to the callback. The `encoding` option
166166can be used to specify the character encoding used to decode the stdout and
167- stderr output. If `encoding` is `'buffer'`, `Buffer` objects will be passed to
168- the callback instead.
167+ stderr output. If `encoding` is `'buffer'`, or an unrecognized character
168+ encoding, `Buffer` objects will be passed to the callback instead.
169169
170170The `options` argument may be passed as the second argument to customize how
171171the process is spawned. The default options are:
@@ -233,8 +233,8 @@ The `stdout` and `stderr` arguments passed to the callback will contain the
233233stdout and stderr output of the child process. By default, Node.js will decode
234234the output as UTF-8 and pass strings to the callback. The `encoding` option
235235can be used to specify the character encoding used to decode the stdout and
236- stderr output. If `encoding` is `'buffer'`, `Buffer` objects will be passed to
237- the callback instead.
236+ stderr output. If `encoding` is `'buffer'`, or an unrecognized character
237+ encoding, `Buffer` objects will be passed to the callback instead.
238238
239239### child_process.fork(modulePath[, args][, options])
240240<!-- YAML
You can’t perform that action at this time.
0 commit comments