Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc/api
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/cli.md2
-rw-r--r--doc/api/errors.md6
-rw-r--r--doc/api/fs.md6
-rw-r--r--doc/api/http.md6
-rw-r--r--doc/api/net.md2
-rw-r--r--doc/api/util.md2
6 files changed, 12 insertions, 12 deletions
diff --git a/doc/api/cli.md b/doc/api/cli.md
index 5b782c3ec15..eadf1523c40 100644
--- a/doc/api/cli.md
+++ b/doc/api/cli.md
@@ -430,7 +430,7 @@ To allow polyfills to be added, `--require` runs before freezing intrinsics.
### `--force-node-api-uncaught-exceptions-policy`
<!-- YAML
-added: REPLACEME
+added: v18.3.0
-->
Enforces `uncaughtException` event on Node-API asynchronous callbacks.
diff --git a/doc/api/errors.md b/doc/api/errors.md
index 156243f9499..135e0e0751a 100644
--- a/doc/api/errors.md
+++ b/doc/api/errors.md
@@ -2349,7 +2349,7 @@ cannot be imported through the package resolution, unless using an absolute URL.
### `ERR_PARSE_ARGS_INVALID_OPTION_VALUE`
<!-- YAML
-added: REPLACEME
+added: v18.3.0
-->
When `strict` set to `true`, thrown by [`util.parseArgs()`][] if a {boolean}
@@ -2361,7 +2361,7 @@ value is provided for an option of type {boolean}.
### `ERR_PARSE_ARGS_UNEXPECTED_POSITIONAL`
<!-- YAML
-added: REPLACEME
+added: v18.3.0
-->
Thrown by [`util.parseArgs()`][], when a postional argument is provided and
@@ -2372,7 +2372,7 @@ Thrown by [`util.parseArgs()`][], when a postional argument is provided and
### `ERR_PARSE_ARGS_UNKNOWN_OPTION`
<!-- YAML
-added: REPLACEME
+added: v18.3.0
-->
When `strict` set to `true`, thrown by [`util.parseArgs()`][] if an argument
diff --git a/doc/api/fs.md b/doc/api/fs.md
index bfddb6fd9b2..21a454136af 100644
--- a/doc/api/fs.md
+++ b/doc/api/fs.md
@@ -649,7 +649,7 @@ the end of the file.
#### `filehandle.write(buffer[, options])`
<!-- YAML
-added: REPLACEME
+added: v18.3.0
-->
* `buffer` {Buffer|TypedArray|DataView}
@@ -4463,7 +4463,7 @@ the end of the file.
### `fs.write(fd, buffer[, options], callback)`
<!-- YAML
-added: REPLACEME
+added: v18.3.0
-->
* `fd` {integer}
@@ -5865,7 +5865,7 @@ this API: [`fs.write(fd, buffer...)`][].
### `fs.writeSync(fd, buffer[, options])`
<!-- YAML
-added: REPLACEME
+added: v18.3.0
-->
* `fd` {integer}
diff --git a/doc/api/http.md b/doc/api/http.md
index 838cdd0e05f..375e066372d 100644
--- a/doc/api/http.md
+++ b/doc/api/http.md
@@ -2370,7 +2370,7 @@ header name:
### `message.headersDistinct`
<!-- YAML
-added: REPLACEME
+added: v18.3.0
-->
* {Object}
@@ -2522,7 +2522,7 @@ The request/response trailers object. Only populated at the `'end'` event.
### `message.trailersDistinct`
<!-- YAML
-added: REPLACEME
+added: v18.3.0
-->
* {Object}
@@ -2645,7 +2645,7 @@ will result in a `TypeError` being thrown.
### `outgoingMessage.appendHeader(name, value)`
<!-- YAML
-added: REPLACEME
+added: v18.3.0
-->
* `name` {string} Header name
diff --git a/doc/api/net.md b/doc/api/net.md
index b3eecd2e98c..54cf1ac37a7 100644
--- a/doc/api/net.md
+++ b/doc/api/net.md
@@ -1090,7 +1090,7 @@ The numeric representation of the remote port. For example, `80` or `21`.
### `socket.resetAndDestroy()`
<!-- YAML
-added: REPLACEME
+added: v18.3.0
-->
* Returns: {net.Socket}
diff --git a/doc/api/util.md b/doc/api/util.md
index e2f7ac9e0ae..9d5201adfcc 100644
--- a/doc/api/util.md
+++ b/doc/api/util.md
@@ -1023,7 +1023,7 @@ equality.
## `util.parseArgs([config])`
<!-- YAML
-added: REPLACEME
+added: v18.3.0
-->
> Stability: 1 - Experimental