File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,7 +27,8 @@ release.
2727</tr >
2828<tr >
2929 <td valign="top">
30- <b ><a href =" doc/changelogs/CHANGELOG_V8.md#8.1.4 " >8.1.4</a ></b ><br />
30+ <b ><a href =" doc/changelogs/CHANGELOG_V8.md#8.2.0 " >8.2.0</a ></b ><br />
31+ <a href =" doc/changelogs/CHANGELOG_V8.md#8.1.4 " >8.1.4</a ><br />
3132<a href =" doc/changelogs/CHANGELOG_V8.md#8.1.3 " >8.1.3</a ><br />
3233<a href =" doc/changelogs/CHANGELOG_V8.md#8.1.2 " >8.1.2</a ><br />
3334<a href =" doc/changelogs/CHANGELOG_V8.md#8.1.1 " >8.1.1</a ><br />
Original file line number Diff line number Diff line change @@ -910,7 +910,7 @@ A `TypeError` will be thrown if `str` is not a string.
910910
911911### Class Method: Buffer.from(object[ , offsetOrEncoding[ , length]] )
912912<!-- YAML
913- added: REPLACEME
913+ added: v8.2.0
914914-->
915915
916916* ` object ` {Object} An object supporting ` Symbol.toPrimitive ` or ` valueOf() `
@@ -2665,15 +2665,15 @@ console.log(buf);
26652665
26662666## Buffer Constants
26672667<!-- YAML
2668- added: REPLACEME
2668+ added: 8.2.0
26692669-->
26702670
26712671Note that ` buffer.constants ` is a property on the ` buffer ` module returned by
26722672` require('buffer') ` , not on the ` Buffer ` global or a ` Buffer ` instance.
26732673
26742674### buffer.constants.MAX_LENGTH
26752675<!-- YAML
2676- added: REPLACEME
2676+ added: 8.2.0
26772677-->
26782678
26792679* {integer} The largest size allowed for a single ` Buffer ` instance
@@ -2685,7 +2685,7 @@ This value is also available as [`buffer.kMaxLength`][].
26852685
26862686### buffer.constants.MAX_STRING_LENGTH
26872687<!-- YAML
2688- added: REPLACEME
2688+ added: 8.2.0
26892689-->
26902690
26912691* {integer} The largest length allowed for a single ` string ` instance
Original file line number Diff line number Diff line change @@ -694,7 +694,7 @@ values are `"rr"` and `"none"`.
694694<!-- YAML
695695added: v0.7.1
696696changes:
697- - version: REPLACEME
697+ - version: 8.2.0
698698 pr-url: https://github.com/nodejs/node/pull/14140
699699 description: The `inspectPort` option is supported now.
700700 - version: v6.4.0
Original file line number Diff line number Diff line change @@ -540,7 +540,7 @@ thrown to immediately terminate the process.
540540
541541#### napi_fatal_error
542542<!-- YAML
543- added: REPLACEME
543+ added: v8.2.0
544544-->
545545```C
546546NAPI_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.
23382338
23392339#### * napi_delete_property*
23402340<!-- YAML
2341- added: REPLACEME
2341+ added: v8.2.0
23422342-->
23432343``` C
23442344napi_status napi_delete_property (napi_env env,
@@ -2360,7 +2360,7 @@ This API attempts to delete the `key` own property from `object`.
23602360
23612361#### *napi_has_own_property*
23622362<!-- YAML
2363- added: REPLACEME
2363+ added: v8.2.0
23642364-->
23652365```C
23662366napi_status napi_has_own_property(napi_env env,
@@ -2507,7 +2507,7 @@ requested index.
25072507
25082508#### * napi_delete_element*
25092509<!-- YAML
2510- added: REPLACEME
2510+ added: v8.2.0
25112511-->
25122512``` C
25132513napi_status napi_delete_element (napi_env env,
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ const util = require('util');
1212
1313## util.callbackify(original)
1414<!-- YAML
15- added: REPLACEME
15+ added: v8.2.0
1616-->
1717
1818* ` original ` {Function} An ` async ` function
You can’t perform that action at this time.
0 commit comments