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/buffer.md8
-rw-r--r--doc/api/cluster.md2
-rw-r--r--doc/api/n-api.md8
-rw-r--r--doc/api/util.md2
4 files changed, 10 insertions, 10 deletions
diff --git a/doc/api/buffer.md b/doc/api/buffer.md
index 3a04ad514b4..d73af5fd162 100644
--- a/doc/api/buffer.md
+++ b/doc/api/buffer.md
@@ -910,7 +910,7 @@ A `TypeError` will be thrown if `str` is not a string.
### Class Method: Buffer.from(object[, offsetOrEncoding[, length]])
<!-- YAML
-added: REPLACEME
+added: v8.2.0
-->
* `object` {Object} An object supporting `Symbol.toPrimitive` or `valueOf()`
@@ -2665,7 +2665,7 @@ console.log(buf);
## Buffer Constants
<!-- YAML
-added: REPLACEME
+added: 8.2.0
-->
Note that `buffer.constants` is a property on the `buffer` module returned by
@@ -2673,7 +2673,7 @@ Note that `buffer.constants` is a property on the `buffer` module returned by
### buffer.constants.MAX_LENGTH
<!-- YAML
-added: REPLACEME
+added: 8.2.0
-->
* {integer} The largest size allowed for a single `Buffer` instance
@@ -2685,7 +2685,7 @@ This value is also available as [`buffer.kMaxLength`][].
### buffer.constants.MAX_STRING_LENGTH
<!-- YAML
-added: REPLACEME
+added: 8.2.0
-->
* {integer} The largest length allowed for a single `string` instance
diff --git a/doc/api/cluster.md b/doc/api/cluster.md
index f71f91535c5..95c97865016 100644
--- a/doc/api/cluster.md
+++ b/doc/api/cluster.md
@@ -694,7 +694,7 @@ values are `"rr"` and `"none"`.
<!-- YAML
added: v0.7.1
changes:
- - version: REPLACEME
+ - version: 8.2.0
pr-url: https://github.com/nodejs/node/pull/14140
description: The `inspectPort` option is supported now.
- version: v6.4.0
diff --git a/doc/api/n-api.md b/doc/api/n-api.md
index 24e644ae485..eaa1201de7d 100644
--- a/doc/api/n-api.md
+++ b/doc/api/n-api.md
@@ -540,7 +540,7 @@ thrown to immediately terminate the process.
#### napi_fatal_error
<!-- YAML
-added: REPLACEME
+added: v8.2.0
-->
```C
NAPI_EXTERN NAPI_NO_RETURN void napi_fatal_error(const char* location, const char* message);
@@ -2338,7 +2338,7 @@ This API checks if the Object passed in has the named property.
#### *napi_delete_property*
<!-- YAML
-added: REPLACEME
+added: v8.2.0
-->
```C
napi_status napi_delete_property(napi_env env,
@@ -2360,7 +2360,7 @@ This API attempts to delete the `key` own property from `object`.
#### *napi_has_own_property*
<!-- YAML
-added: REPLACEME
+added: v8.2.0
-->
```C
napi_status napi_has_own_property(napi_env env,
@@ -2507,7 +2507,7 @@ requested index.
#### *napi_delete_element*
<!-- YAML
-added: REPLACEME
+added: v8.2.0
-->
```C
napi_status napi_delete_element(napi_env env,
diff --git a/doc/api/util.md b/doc/api/util.md
index b299a674093..616e989835f 100644
--- a/doc/api/util.md
+++ b/doc/api/util.md
@@ -12,7 +12,7 @@ const util = require('util');
## util.callbackify(original)
<!-- YAML
-added: REPLACEME
+added: v8.2.0
-->
* `original` {Function} An `async` function