@@ -686,7 +686,10 @@ For more details, review the [Object lifetime management][].
686
686
687
687
#### napi_type_tag
688
688
<!-- YAML
689
- added: v14.8.0
689
+ added:
690
+ - v14.8.0
691
+ - v12.19.0
692
+ napiVersion: 8
690
693
-->
691
694
692
695
A 128-bit value stored as two unsigned 64-bit integers. It serves as a UUID
@@ -1694,15 +1697,16 @@ with `napi_add_env_cleanup_hook`, otherwise the process will abort.
1694
1697
1695
1698
#### napi_add_async_cleanup_hook
1696
1699
<!-- YAML
1697
- added: v14.8.0
1700
+ added:
1701
+ - v14.8.0
1702
+ - v12.19.0
1703
+ napiVersion: 8
1698
1704
changes:
1699
1705
- version: v14.10.0
1700
1706
pr-url: https://github.com/nodejs/node/pull/34819
1701
1707
description: Changed signature of the `hook` callback.
1702
1708
-->
1703
1709
1704
- > Stability: 1 - Experimental
1705
-
1706
1710
```c
1707
1711
NAPI_EXTERN napi_status napi_add_async_cleanup_hook(
1708
1712
napi_env env,
@@ -1740,8 +1744,6 @@ changes:
1740
1744
description: Removed `env` parameter.
1741
1745
-->
1742
1746
1743
- > Stability: 1 - Experimental
1744
-
1745
1747
```c
1746
1748
NAPI_EXTERN napi_status napi_remove_async_cleanup_hook(
1747
1749
napi_async_cleanup_hook_handle remove_handle);
@@ -4196,11 +4198,12 @@ specification).
4196
4198
4197
4199
#### napi_object_freeze
4198
4200
<!-- YAML
4199
- added: v14.14.0
4201
+ added:
4202
+ - v14.14.0
4203
+ - v12.20.0
4204
+ napiVersion: 8
4200
4205
-->
4201
4206
4202
- > Stability: 1 - Experimental
4203
-
4204
4207
```c
4205
4208
napi_status napi_object_freeze(napi_env env,
4206
4209
napi_value object);
@@ -4221,11 +4224,12 @@ ECMA-262 specification.
4221
4224
4222
4225
#### napi_object_seal
4223
4226
<!-- YAML
4224
- added: v14.14.0
4227
+ added:
4228
+ - v14.14.0
4229
+ - v12.20.0
4230
+ napiVersion: 8
4225
4231
-->
4226
4232
4227
- > Stability: 1 - Experimental
4228
-
4229
4233
```c
4230
4234
napi_status napi_object_seal(napi_env env,
4231
4235
napi_value object);
@@ -4884,11 +4888,12 @@ JavaScript object becomes garbage-collected.
4884
4888
4885
4889
### napi_type_tag_object
4886
4890
<!-- YAML
4887
- added: v14.8.0
4891
+ added:
4892
+ - v14.8.0
4893
+ - v12.19.0
4894
+ napiVersion: 8
4888
4895
-->
4889
4896
4890
- > Stability: 1 - Experimental
4891
-
4892
4897
```c
4893
4898
napi_status napi_type_tag_object(napi_env env,
4894
4899
napi_value js_object,
@@ -4911,11 +4916,12 @@ If the object already has an associated type tag, this API will return
4911
4916
4912
4917
### napi_check_object_type_tag
4913
4918
<!-- YAML
4914
- added: v14.8.0
4919
+ added:
4920
+ - v14.8.0
4921
+ - v12.19.0
4922
+ napiVersion: 8
4915
4923
-->
4916
4924
4917
- > Stability: 1 - Experimental
4918
-
4919
4925
```c
4920
4926
napi_status napi_check_object_type_tag(napi_env env,
4921
4927
napi_value js_object,
0 commit comments