summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorh3knix <h3knix@gmail.com>2019-07-19 20:06:10 -0600
committerMichaƫl Zasso <targos@protonmail.com>2019-07-22 21:21:23 +0200
commit2a82d54d9d18413bb56f7623321d42e361610c76 (patch)
treea474827b87c190d8f5bf7af2651c1e42f3d62b5b
parent7df54988e132d1ceb26b4122870993b730ac8b08 (diff)
downloadandroid-node-v8-2a82d54d9d18413bb56f7623321d42e361610c76.tar.gz
android-node-v8-2a82d54d9d18413bb56f7623321d42e361610c76.tar.bz2
android-node-v8-2a82d54d9d18413bb56f7623321d42e361610c76.zip
doc: update env default on child_process functions
PR-URL: https://github.com/nodejs/node/pull/28776 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
-rw-r--r--doc/api/child_process.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/api/child_process.md b/doc/api/child_process.md
index f001ee3c76..2c829fa157 100644
--- a/doc/api/child_process.md
+++ b/doc/api/child_process.md
@@ -142,7 +142,7 @@ changes:
* `options` {Object}
* `cwd` {string} Current working directory of the child process.
**Default:** `null`.
- * `env` {Object} Environment key-value pairs. **Default:** `null`.
+ * `env` {Object} Environment key-value pairs. **Default:** `process.env`.
* `encoding` {string} **Default:** `'utf8'`
* `shell` {string} Shell to execute the command with. See
[Shell Requirements][] and [Default Windows Shell][]. **Default:**
@@ -245,7 +245,7 @@ changes:
* `args` {string[]} List of string arguments.
* `options` {Object}
* `cwd` {string} Current working directory of the child process.
- * `env` {Object} Environment key-value pairs.
+ * `env` {Object} Environment key-value pairs. **Default:** `process.env`.
* `encoding` {string} **Default:** `'utf8'`
* `timeout` {number} **Default:** `0`
* `maxBuffer` {number} Largest amount of data in bytes allowed on stdout or
@@ -335,7 +335,7 @@ changes:
* `detached` {boolean} Prepare child to run independently of its parent
process. Specific behavior depends on the platform, see
[`options.detached`][]).
- * `env` {Object} Environment key-value pairs.
+ * `env` {Object} Environment key-value pairs. **Default:** `process.env`.
* `execPath` {string} Executable used to create the child process.
* `execArgv` {string[]} List of string arguments passed to the executable.
**Default:** `process.execArgv`.
@@ -400,7 +400,7 @@ changes:
* `args` {string[]} List of string arguments.
* `options` {Object}
* `cwd` {string} Current working directory of the child process.
- * `env` {Object} Environment key-value pairs.
+ * `env` {Object} Environment key-value pairs. **Default:** `process.env`.
* `argv0` {string} Explicitly set the value of `argv[0]` sent to the child
process. This will be set to `command` if not specified.
* `stdio` {Array|string} Child's stdio configuration (see
@@ -714,7 +714,7 @@ changes:
* `stdio` {string|Array} Child's stdio configuration. `stderr` by default will
be output to the parent process' stderr unless `stdio` is specified.
**Default:** `'pipe'`.
- * `env` {Object} Environment key-value pairs.
+ * `env` {Object} Environment key-value pairs. **Default:** `process.env`.
* `uid` {number} Sets the user identity of the process (see setuid(2)).
* `gid` {number} Sets the group identity of the process (see setgid(2)).
* `timeout` {number} In milliseconds the maximum amount of time the process
@@ -777,7 +777,7 @@ changes:
* `stdio` {string|Array} Child's stdio configuration. `stderr` by default will
be output to the parent process' stderr unless `stdio` is specified.
**Default:** `'pipe'`.
- * `env` {Object} Environment key-value pairs.
+ * `env` {Object} Environment key-value pairs. **Default:** `process.env`.
* `shell` {string} Shell to execute the command with. See
[Shell Requirements][] and [Default Windows Shell][]. **Default:**
`'/bin/sh'` on Unix, `process.env.ComSpec` on Windows.
@@ -844,7 +844,7 @@ changes:
* `argv0` {string} Explicitly set the value of `argv[0]` sent to the child
process. This will be set to `command` if not specified.
* `stdio` {string|Array} Child's stdio configuration.
- * `env` {Object} Environment key-value pairs.
+ * `env` {Object} Environment key-value pairs. **Default:** `process.env`.
* `uid` {number} Sets the user identity of the process (see setuid(2)).
* `gid` {number} Sets the group identity of the process (see setgid(2)).
* `timeout` {number} In milliseconds the maximum amount of time the process