diff --git a/CHANGELOG.md b/CHANGELOG.md
index 95d5ad1ebd0e05..2789b6b5c810b0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -36,7 +36,8 @@ release.
-21.5.0
+21.6.0
+21.5.0
21.4.0
21.3.0
21.2.0
diff --git a/doc/api/cli.md b/doc/api/cli.md
index 737a85ae0214d4..8b6b25b5bf34ab 100644
--- a/doc/api/cli.md
+++ b/doc/api/cli.md
@@ -106,7 +106,7 @@ If this flag is passed, the behavior can still be set to not abort through
### `--allow-addons`
> Stability: 1.1 - Active development
@@ -367,7 +367,7 @@ Currently the support for run-time snapshot is experimental in that:
### `--build-snapshot-config`
> Stability: 1 - Experimental
diff --git a/doc/api/n-api.md b/doc/api/n-api.md
index 8e99d640c1df9d..188635e4df25b7 100644
--- a/doc/api/n-api.md
+++ b/doc/api/n-api.md
@@ -794,7 +794,7 @@ handle and/or callback scope inside a `napi_callback` is not necessary.
#### `node_api_nogc_finalize`
> Stability: 1 - Experimental
diff --git a/doc/api/net.md b/doc/api/net.md
index 8a66a0a68b4c60..10071c46f10380 100644
--- a/doc/api/net.md
+++ b/doc/api/net.md
@@ -694,7 +694,7 @@ See [`net.createConnection()`][].
### Event: `'connectionAttempt'`
* `ip` {number} The IP which the socket is attempting to connect to.
@@ -707,7 +707,7 @@ if the family autoselection algorithm is enabled in [`socket.connect(options)`][
### Event: `'connectionAttemptFailed'`
* `ip` {number} The IP which the socket attempted to connect to.
@@ -721,7 +721,7 @@ if the family autoselection algorithm is enabled in [`socket.connect(options)`][
### Event: `'connectionAttemptTimeout'`
* `ip` {number} The IP which the socket attempted to connect to.
diff --git a/doc/changelogs/CHANGELOG_V21.md b/doc/changelogs/CHANGELOG_V21.md
index 1f53b574441ebd..c8a6f24488b4a2 100644
--- a/doc/changelogs/CHANGELOG_V21.md
+++ b/doc/changelogs/CHANGELOG_V21.md
@@ -8,6 +8,7 @@
|
+21.6.0
21.5.0
21.4.0
21.3.0
@@ -41,6 +42,173 @@
* [io.js](CHANGELOG_IOJS.md)
* [Archive](CHANGELOG_ARCHIVE.md)
+
+
+## 2024-01-04, Version 21.6.0 (Current), @RafaelGSS
+
+### New connection attempt events
+
+Three new events were added in the `net.createConnection` flow:
+
+* `connectionAttempt`: Emitted when a new connection attempt is established. In case of Happy Eyeballs, this might emitted multiple times.
+* `connectionAttemptFailed`: Emitted when a connection attempt failed. In case of Happy Eyeballs, this might emitted multiple times.
+* `connectionAttemptTimeout`: Emitted when a connection attempt timed out. In case of Happy Eyeballs, this will not be emitted for the last attempt. This is not emitted at all if Happy Eyeballs is not used.
+
+Additionally, a previous bug has been fixed where a new connection attempt could have been started after a previous one failed and after the connection was destroyed by the user.
+This led to a failed assertion.
+
+Contributed by Paolo Insogna in [#51045](https://github.com/nodejs/node/pull/51045).
+
+### Changes to the Permission Model
+
+Node.js 21.6.0 comes with several fixes for the experimental permission model and two new semver-minor commits.
+We're adding a new flag `--allow-addon` to enable addon usage when using the Permission Model.
+
+```console
+$ node --experimental-permission --allow-addons
+```
+
+Contributed by Rafael Gonzaga in [#51183](https://github.com/nodejs/node/pull/51183)
+
+And relative paths are now supported through the `--allow-fs-*` flags.
+Therefore, with this release one can use:
+
+```console
+$ node --experimental-permission --allow-fs-read=./index.js
+```
+
+To give only read access to the entrypoint of the application.
+
+Contributed by Rafael Gonzaga and Carlos Espa in [#50758](https://github.com/nodejs/node/pull/50758)
+
+### Support configurable snapshot through `--build-snapshot-config` flag
+
+We are adding a new flag `--build-snapshot-config` to configure snapshots through a custom JSON configuration file.
+
+```console
+$ node --build-snapshot-config=/path/to/myconfig.json
+```
+When using this flag, additional script files provided on the command line will
+not be executed and instead be interpreted as regular command line arguments.
+
+These changes were contributed by Joyee Cheung and Anna Henningsen in [#50453](https://github.com/nodejs/node/pull/50453)
+
+### Other Notable Changes
+
+* \[[`c31ed51373`](https://github.com/nodejs/node/commit/c31ed51373)] - **(SEMVER-MINOR)** **timers**: export timers.promises (Marco Ippolito) [#51246](https://github.com/nodejs/node/pull/51246)
+
+### Commits
+
+* \[[`13a1241b83`](https://github.com/nodejs/node/commit/13a1241b83)] - **assert,crypto**: make KeyObject and CryptoKey testable for equality (Filip Skokan) [#50897](https://github.com/nodejs/node/pull/50897)
+* \[[`4dcc5114aa`](https://github.com/nodejs/node/commit/4dcc5114aa)] - **benchmark**: remove dependency on unshipped tools (Adam Majer) [#51146](https://github.com/nodejs/node/pull/51146)
+* \[[`2eb41f86b3`](https://github.com/nodejs/node/commit/2eb41f86b3)] - **build**: fix for VScode "Reopen in Container" (Serg Kryvonos) [#51271](https://github.com/nodejs/node/pull/51271)
+* \[[`e03ac83c19`](https://github.com/nodejs/node/commit/e03ac83c19)] - **build**: fix arm64 cross-compilation (Michaël Zasso) [#51256](https://github.com/nodejs/node/pull/51256)
+* \[[`cd61fce34e`](https://github.com/nodejs/node/commit/cd61fce34e)] - **build**: add `-flax-vector-conversions` to V8 build (Michaël Zasso) [#51257](https://github.com/nodejs/node/pull/51257)
+* \[[`e5017a522e`](https://github.com/nodejs/node/commit/e5017a522e)] - **crypto**: update CryptoKey symbol properties (Filip Skokan) [#50897](https://github.com/nodejs/node/pull/50897)
+* \[[`c0d2e8be11`](https://github.com/nodejs/node/commit/c0d2e8be11)] - **deps**: update corepack to 0.24.0 (Node.js GitHub Bot) [#51318](https://github.com/nodejs/node/pull/51318)
+* \[[`24a9a72492`](https://github.com/nodejs/node/commit/24a9a72492)] - **deps**: update acorn to 8.11.3 (Node.js GitHub Bot) [#51317](https://github.com/nodejs/node/pull/51317)
+* \[[`e53cbb22c2`](https://github.com/nodejs/node/commit/e53cbb22c2)] - **deps**: update ngtcp2 and nghttp3 (James M Snell) [#51291](https://github.com/nodejs/node/pull/51291)
+* \[[`f00f1204f1`](https://github.com/nodejs/node/commit/f00f1204f1)] - **deps**: update brotli to 1.1.0 (Node.js GitHub Bot) [#50804](https://github.com/nodejs/node/pull/50804)
+* \[[`a41dca0c51`](https://github.com/nodejs/node/commit/a41dca0c51)] - **deps**: update zlib to 1.3.0.1-motley-40e35a7 (Node.js GitHub Bot) [#51274](https://github.com/nodejs/node/pull/51274)
+* \[[`efa12a89c6`](https://github.com/nodejs/node/commit/efa12a89c6)] - **deps**: update simdutf to 4.0.8 (Node.js GitHub Bot) [#51000](https://github.com/nodejs/node/pull/51000)
+* \[[`25eba3d20b`](https://github.com/nodejs/node/commit/25eba3d20b)] - **deps**: V8: cherry-pick de611e69ad51 (Keyhan Vakil) [#51200](https://github.com/nodejs/node/pull/51200)
+* \[[`a07d6e23e4`](https://github.com/nodejs/node/commit/a07d6e23e4)] - **deps**: update simdjson to 3.6.3 (Node.js GitHub Bot) [#51104](https://github.com/nodejs/node/pull/51104)
+* \[[`6d1bfcb2dd`](https://github.com/nodejs/node/commit/6d1bfcb2dd)] - **deps**: update googletest to 530d5c8 (Node.js GitHub Bot) [#51191](https://github.com/nodejs/node/pull/51191)
+* \[[`75e5615c43`](https://github.com/nodejs/node/commit/75e5615c43)] - **deps**: update acorn-walk to 8.3.1 (Node.js GitHub Bot) [#50457](https://github.com/nodejs/node/pull/50457)
+* \[[`3ecc7dcc00`](https://github.com/nodejs/node/commit/3ecc7dcc00)] - **deps**: update acorn-walk to 8.3.0 (Node.js GitHub Bot) [#50457](https://github.com/nodejs/node/pull/50457)
+* \[[`e2f8d741c8`](https://github.com/nodejs/node/commit/e2f8d741c8)] - **deps**: update zlib to 1.3.0.1-motley-dd5fc13 (Node.js GitHub Bot) [#51105](https://github.com/nodejs/node/pull/51105)
+* \[[`4a5d3bda72`](https://github.com/nodejs/node/commit/4a5d3bda72)] - **doc**: the GN files should use Node's license (Cheng Zhao) [#50694](https://github.com/nodejs/node/pull/50694)
+* \[[`84127514ba`](https://github.com/nodejs/node/commit/84127514ba)] - **doc**: improve localWindowSize event descriptions (Davy Landman) [#51071](https://github.com/nodejs/node/pull/51071)
+* \[[`8ee882a49c`](https://github.com/nodejs/node/commit/8ee882a49c)] - **doc**: mark `--jitless` as experimental (Antoine du Hamel) [#51247](https://github.com/nodejs/node/pull/51247)
+* \[[`876743ece1`](https://github.com/nodejs/node/commit/876743ece1)] - **doc**: run license-builder (github-actions\[bot]) [#51199](https://github.com/nodejs/node/pull/51199)
+* \[[`ec6fcff009`](https://github.com/nodejs/node/commit/ec6fcff009)] - **doc**: fix limitations and known issues in pm (Rafael Gonzaga) [#51184](https://github.com/nodejs/node/pull/51184)
+* \[[`c13a5c0373`](https://github.com/nodejs/node/commit/c13a5c0373)] - **doc**: mention node:wasi in the Threat Model (Rafael Gonzaga) [#51211](https://github.com/nodejs/node/pull/51211)
+* \[[`4b19e62444`](https://github.com/nodejs/node/commit/4b19e62444)] - **doc**: remove ambiguous 'considered' (Rich Trott) [#51207](https://github.com/nodejs/node/pull/51207)
+* \[[`5453abd6ad`](https://github.com/nodejs/node/commit/5453abd6ad)] - **doc**: set exit code in custom test runner example (Matteo Collina) [#51056](https://github.com/nodejs/node/pull/51056)
+* \[[`f9d4e07faf`](https://github.com/nodejs/node/commit/f9d4e07faf)] - **doc**: remove version from `maintaining-dependencies.md` (Antoine du Hamel) [#51195](https://github.com/nodejs/node/pull/51195)
+* \[[`df8927a073`](https://github.com/nodejs/node/commit/df8927a073)] - **doc**: mention native addons are restricted in pm (Rafael Gonzaga) [#51185](https://github.com/nodejs/node/pull/51185)
+* \[[`e636d83914`](https://github.com/nodejs/node/commit/e636d83914)] - **doc**: correct note on behavior of stats.isDirectory (Nick Reilingh) [#50946](https://github.com/nodejs/node/pull/50946)
+* \[[`1c71435c2a`](https://github.com/nodejs/node/commit/1c71435c2a)] - **doc**: fix `TestsStream` parent class (Jungku Lee) [#51181](https://github.com/nodejs/node/pull/51181)
+* \[[`2c227b0d64`](https://github.com/nodejs/node/commit/2c227b0d64)] - **doc**: fix simdjson wrong link (Marco Ippolito) [#51177](https://github.com/nodejs/node/pull/51177)
+* \[[`efa13e1943`](https://github.com/nodejs/node/commit/efa13e1943)] - **(SEMVER-MINOR)** **doc**: add documentation for --build-snapshot-config (Anna Henningsen) [#50453](https://github.com/nodejs/node/pull/50453)
+* \[[`941aedc6fc`](https://github.com/nodejs/node/commit/941aedc6fc)] - **errors**: fix stacktrace of SystemError (uzlopak) [#49956](https://github.com/nodejs/node/pull/49956)
+* \[[`47548d9e61`](https://github.com/nodejs/node/commit/47548d9e61)] - **esm**: fix hint on invalid module specifier (Antoine du Hamel) [#51223](https://github.com/nodejs/node/pull/51223)
+* \[[`091098f40a`](https://github.com/nodejs/node/commit/091098f40a)] - **fs**: fix fs.promises.realpath for long paths on Windows (翠 / green) [#51032](https://github.com/nodejs/node/pull/51032)
+* \[[`e5a8fa01aa`](https://github.com/nodejs/node/commit/e5a8fa01aa)] - **fs**: make offset, position & length args in fh.read() optional (Pulkit Gupta) [#51087](https://github.com/nodejs/node/pull/51087)
+* \[[`c87e5d51cc`](https://github.com/nodejs/node/commit/c87e5d51cc)] - **fs**: add missing jsdoc parameters to `readSync` (Yagiz Nizipli) [#51225](https://github.com/nodejs/node/pull/51225)
+* \[[`e24249cf37`](https://github.com/nodejs/node/commit/e24249cf37)] - **fs**: remove `internalModuleReadJSON` binding (Yagiz Nizipli) [#51224](https://github.com/nodejs/node/pull/51224)
+* \[[`7421467812`](https://github.com/nodejs/node/commit/7421467812)] - **fs**: improve mkdtemp performance for buffer prefix (Yagiz Nizipli) [#51078](https://github.com/nodejs/node/pull/51078)
+* \[[`5b229d775f`](https://github.com/nodejs/node/commit/5b229d775f)] - **fs**: validate fd synchronously on c++ (Yagiz Nizipli) [#51027](https://github.com/nodejs/node/pull/51027)
+* \[[`c7a135962d`](https://github.com/nodejs/node/commit/c7a135962d)] - **http**: remove misleading warning (Luigi Pinca) [#51204](https://github.com/nodejs/node/pull/51204)
+* \[[`a325746ff4`](https://github.com/nodejs/node/commit/a325746ff4)] - **http**: do not override user-provided options object (KuthorX) [#33633](https://github.com/nodejs/node/pull/33633)
+* \[[`89eee7763f`](https://github.com/nodejs/node/commit/89eee7763f)] - **http2**: addtl http/2 settings (Marten Richter) [#49025](https://github.com/nodejs/node/pull/49025)
+* \[[`624142947f`](https://github.com/nodejs/node/commit/624142947f)] - **lib**: fix use of `--frozen-intrinsics` with `--jitless` (Antoine du Hamel) [#51248](https://github.com/nodejs/node/pull/51248)
+* \[[`8f845eb001`](https://github.com/nodejs/node/commit/8f845eb001)] - **lib**: move function declaration outside of loop (Sanjaiyan Parthipan) [#51242](https://github.com/nodejs/node/pull/51242)
+* \[[`ed7305e49b`](https://github.com/nodejs/node/commit/ed7305e49b)] - **lib**: reduce overhead of `SafePromiseAllSettledReturnVoid` calls (Antoine du Hamel) [#51243](https://github.com/nodejs/node/pull/51243)
+* \[[`291265ce27`](https://github.com/nodejs/node/commit/291265ce27)] - **lib**: expose default prepareStackTrace (Chengzhong Wu) [#50827](https://github.com/nodejs/node/pull/50827)
+* \[[`8ff6bc45ca`](https://github.com/nodejs/node/commit/8ff6bc45ca)] - **lib,permission**: handle buffer on fs.symlink (Rafael Gonzaga) [#51212](https://github.com/nodejs/node/pull/51212)
+* \[[`416b4f8063`](https://github.com/nodejs/node/commit/416b4f8063)] - **(SEMVER-MINOR)** **lib,src,permission**: port path.resolve to C++ (Rafael Gonzaga) [#50758](https://github.com/nodejs/node/pull/50758)
+* \[[`6648a5c576`](https://github.com/nodejs/node/commit/6648a5c576)] - **meta**: notify tsc on changes in SECURITY.md (Rafael Gonzaga) [#51259](https://github.com/nodejs/node/pull/51259)
+* \[[`83a99ccedd`](https://github.com/nodejs/node/commit/83a99ccedd)] - **meta**: update artifact actions to v4 (Michaël Zasso) [#51219](https://github.com/nodejs/node/pull/51219)
+* \[[`b621ada69a`](https://github.com/nodejs/node/commit/b621ada69a)] - **module**: move the CJS exports cache to internal/modules/cjs/loader (Joyee Cheung) [#51157](https://github.com/nodejs/node/pull/51157)
+* \[[`e4be5b60f0`](https://github.com/nodejs/node/commit/e4be5b60f0)] - **(SEMVER-MINOR)** **net**: add connection attempt events (Paolo Insogna) [#51045](https://github.com/nodejs/node/pull/51045)
+* \[[`3a492056e2`](https://github.com/nodejs/node/commit/3a492056e2)] - **node-api**: type tag external values without v8::Private (Chengzhong Wu) [#51149](https://github.com/nodejs/node/pull/51149)
+* \[[`b2135ae7dc`](https://github.com/nodejs/node/commit/b2135ae7dc)] - **node-api**: segregate nogc APIs from rest via type system (Gabriel Schulhof) [#50060](https://github.com/nodejs/node/pull/50060)
+* \[[`8f4325dcd5`](https://github.com/nodejs/node/commit/8f4325dcd5)] - **permission**: fix wildcard when children > 1 (Rafael Gonzaga) [#51209](https://github.com/nodejs/node/pull/51209)
+* \[[`7ecf99404e`](https://github.com/nodejs/node/commit/7ecf99404e)] - **quic**: update quic impl to use latest ngtcp2/nghttp3 (James M Snell) [#51291](https://github.com/nodejs/node/pull/51291)
+* \[[`5b32e21f3b`](https://github.com/nodejs/node/commit/5b32e21f3b)] - **quic**: add quic internalBinding, refine Endpoint, add types (James M Snell) [#51112](https://github.com/nodejs/node/pull/51112)
+* \[[`3310095bea`](https://github.com/nodejs/node/commit/3310095bea)] - **repl**: fix prepareStackTrace frames array order (Chengzhong Wu) [#50827](https://github.com/nodejs/node/pull/50827)
+* \[[`115e0585cd`](https://github.com/nodejs/node/commit/115e0585cd)] - **src**: add fast api for Histogram (James M Snell) [#51296](https://github.com/nodejs/node/pull/51296)
+* \[[`29b81576c6`](https://github.com/nodejs/node/commit/29b81576c6)] - **src**: refactor `GetCreationContext` calls (Yagiz Nizipli) [#51287](https://github.com/nodejs/node/pull/51287)
+* \[[`54dd978400`](https://github.com/nodejs/node/commit/54dd978400)] - **src**: enter isolate before destructing IsolateData (Ben Noordhuis) [#51138](https://github.com/nodejs/node/pull/51138)
+* \[[`864ecb0dfa`](https://github.com/nodejs/node/commit/864ecb0dfa)] - **src**: do not treat all paths ending with node\_modules as such (Michaël Zasso) [#51269](https://github.com/nodejs/node/pull/51269)
+* \[[`df31c8114c`](https://github.com/nodejs/node/commit/df31c8114c)] - **src**: eliminate duplicate code in histogram.cc (James M Snell) [#51263](https://github.com/nodejs/node/pull/51263)
+* \[[`17c73e6d0c`](https://github.com/nodejs/node/commit/17c73e6d0c)] - **src**: fix unix abstract socket path for trace event (theanarkh) [#50858](https://github.com/nodejs/node/pull/50858)
+* \[[`96d64edc94`](https://github.com/nodejs/node/commit/96d64edc94)] - **src**: use BignumPointer and use BN\_clear\_free (James M Snell) [#50454](https://github.com/nodejs/node/pull/50454)
+* \[[`8a2dd93a14`](https://github.com/nodejs/node/commit/8a2dd93a14)] - **src**: implement FastByteLengthUtf8 with simdutf::utf8\_length\_from\_latin1 (Daniel Lemire) [#50840](https://github.com/nodejs/node/pull/50840)
+* \[[`e54ddf898f`](https://github.com/nodejs/node/commit/e54ddf898f)] - **(SEMVER-MINOR)** **src**: support configurable snapshot (Joyee Cheung) [#50453](https://github.com/nodejs/node/pull/50453)
+* \[[`a69c7d7bc3`](https://github.com/nodejs/node/commit/a69c7d7bc3)] - **(SEMVER-MINOR)** **src,permission**: add --allow-addon flag (Rafael Gonzaga) [#51183](https://github.com/nodejs/node/pull/51183)
+* \[[`e7925e66fc`](https://github.com/nodejs/node/commit/e7925e66fc)] - **src,stream**: improve WriteString (ywave620) [#51155](https://github.com/nodejs/node/pull/51155)
+* \[[`82de6603af`](https://github.com/nodejs/node/commit/82de6603af)] - **stream**: fix code style (Mattias Buelens) [#51168](https://github.com/nodejs/node/pull/51168)
+* \[[`e443953656`](https://github.com/nodejs/node/commit/e443953656)] - **stream**: fix cloned webstreams not being unref'd (James M Snell) [#51255](https://github.com/nodejs/node/pull/51255)
+* \[[`85ee2f7255`](https://github.com/nodejs/node/commit/85ee2f7255)] - **test**: replace forEach() with for...of (Alexander Jones) [#50608](https://github.com/nodejs/node/pull/50608)
+* \[[`549e4b4142`](https://github.com/nodejs/node/commit/549e4b4142)] - **test**: replace forEach with for...of (Ospite Privilegiato) [#50787](https://github.com/nodejs/node/pull/50787)
+* \[[`ef44f9bef2`](https://github.com/nodejs/node/commit/ef44f9bef2)] - **test**: replace foreach with for of (lucacapocci94-dev) [#50790](https://github.com/nodejs/node/pull/50790)
+* \[[`652af45485`](https://github.com/nodejs/node/commit/652af45485)] - **test**: replace forEach() with for...of (Jia) [#50610](https://github.com/nodejs/node/pull/50610)
+* \[[`684dd9db2f`](https://github.com/nodejs/node/commit/684dd9db2f)] - **test**: fix inconsistency write size in `test-fs-readfile-tostring-fail` (Jungku Lee) [#51141](https://github.com/nodejs/node/pull/51141)
+* \[[`aaf710f535`](https://github.com/nodejs/node/commit/aaf710f535)] - **test**: replace forEach test-http-server-multiheaders2 (Marco Mac) [#50794](https://github.com/nodejs/node/pull/50794)
+* \[[`57c64550cc`](https://github.com/nodejs/node/commit/57c64550cc)] - **test**: replace forEach with for-of in test-webcrypto-export-import-ec (Chiara Ricciardi) [#51249](https://github.com/nodejs/node/pull/51249)
+* \[[`88e865181b`](https://github.com/nodejs/node/commit/88e865181b)] - **test**: move to for of loop in test-http-hostname-typechecking.js (Luca Del Puppo) [#50782](https://github.com/nodejs/node/pull/50782)
+* \[[`3db376f67a`](https://github.com/nodejs/node/commit/3db376f67a)] - **test**: skip test-watch-mode-inspect on arm (Michael Dawson) [#51210](https://github.com/nodejs/node/pull/51210)
+* \[[`38232d1c52`](https://github.com/nodejs/node/commit/38232d1c52)] - **test**: replace forEach with for of in file test-trace-events-net.js (Ianna83) [#50789](https://github.com/nodejs/node/pull/50789)
+* \[[`f1cb58355a`](https://github.com/nodejs/node/commit/f1cb58355a)] - **test**: replace forEach() with for...of in test/parallel/test-util-log.js (Edoardo Dusi) [#50783](https://github.com/nodejs/node/pull/50783)
+* \[[`9bfd84c117`](https://github.com/nodejs/node/commit/9bfd84c117)] - **test**: replace forEach with for of in test-trace-events-api.js (Andrea Pavone) [#50784](https://github.com/nodejs/node/pull/50784)
+* \[[`7e9834915a`](https://github.com/nodejs/node/commit/7e9834915a)] - **test**: replace forEach with for-of in test-v8-serders.js (Mattia Iannone) [#50791](https://github.com/nodejs/node/pull/50791)
+* \[[`b6f232e841`](https://github.com/nodejs/node/commit/b6f232e841)] - **test**: add URL tests to fs-read in pm (Rafael Gonzaga) [#51213](https://github.com/nodejs/node/pull/51213)
+* \[[`8a2178c5f5`](https://github.com/nodejs/node/commit/8a2178c5f5)] - **test**: use tmpdir.refresh() in test-esm-loader-resolve-type.mjs (Luigi Pinca) [#51206](https://github.com/nodejs/node/pull/51206)
+* \[[`7e9a0b192a`](https://github.com/nodejs/node/commit/7e9a0b192a)] - **test**: use tmpdir.refresh() in test-esm-json.mjs (Luigi Pinca) [#51205](https://github.com/nodejs/node/pull/51205)
+* \[[`d7c2572fe0`](https://github.com/nodejs/node/commit/d7c2572fe0)] - **test**: fix flakiness in worker\*.test-free-called (Jithil P Ponnan) [#51013](https://github.com/nodejs/node/pull/51013)
+* \[[`979cebc955`](https://github.com/nodejs/node/commit/979cebc955)] - **test\_runner**: fixed test object is incorrectly passed to setup() (Pulkit Gupta) [#50982](https://github.com/nodejs/node/pull/50982)
+* \[[`63db82abe6`](https://github.com/nodejs/node/commit/63db82abe6)] - **test\_runner**: fixed to run after hook if before throws an error (Pulkit Gupta) [#51062](https://github.com/nodejs/node/pull/51062)
+* \[[`c31ed51373`](https://github.com/nodejs/node/commit/c31ed51373)] - **(SEMVER-MINOR)** **timers**: export timers.promises (Marco Ippolito) [#51246](https://github.com/nodejs/node/pull/51246)
+* \[[`fc10f889eb`](https://github.com/nodejs/node/commit/fc10f889eb)] - **tools**: update lint-md-dependencies to rollup\@4.9.2 (Node.js GitHub Bot) [#51320](https://github.com/nodejs/node/pull/51320)
+* \[[`d5a5f12d15`](https://github.com/nodejs/node/commit/d5a5f12d15)] - **tools**: fix dep\_updaters dir updates (Michaël Zasso) [#51294](https://github.com/nodejs/node/pull/51294)
+* \[[`bdcb5ed510`](https://github.com/nodejs/node/commit/bdcb5ed510)] - **tools**: update inspector\_protocol to c488ba2 (cola119) [#51293](https://github.com/nodejs/node/pull/51293)
+* \[[`69a46add77`](https://github.com/nodejs/node/commit/69a46add77)] - **tools**: update inspector\_protocol to 9b4a4aa (cola119) [#51293](https://github.com/nodejs/node/pull/51293)
+* \[[`e325f49d19`](https://github.com/nodejs/node/commit/e325f49d19)] - **tools**: update inspector\_protocol to 2f51e05 (cola119) [#51293](https://github.com/nodejs/node/pull/51293)
+* \[[`60d804851b`](https://github.com/nodejs/node/commit/60d804851b)] - **tools**: update inspector\_protocol to d7b099b (cola119) [#51293](https://github.com/nodejs/node/pull/51293)
+* \[[`d18168489f`](https://github.com/nodejs/node/commit/d18168489f)] - **tools**: update inspector\_protocol to 912eb68 (cola119) [#51293](https://github.com/nodejs/node/pull/51293)
+* \[[`ef4f46fc39`](https://github.com/nodejs/node/commit/ef4f46fc39)] - **tools**: update inspector\_protocol to 547c5b8 (cola119) [#51293](https://github.com/nodejs/node/pull/51293)
+* \[[`c3126fc016`](https://github.com/nodejs/node/commit/c3126fc016)] - **tools**: update inspector\_protocol to ca525fc (cola119) [#51293](https://github.com/nodejs/node/pull/51293)
+* \[[`917d887dde`](https://github.com/nodejs/node/commit/917d887dde)] - **tools**: update lint-md-dependencies to rollup\@4.9.1 (Node.js GitHub Bot) [#51276](https://github.com/nodejs/node/pull/51276)
+* \[[`37594918e0`](https://github.com/nodejs/node/commit/37594918e0)] - **tools**: check timezone current version (Marco Ippolito) [#51178](https://github.com/nodejs/node/pull/51178)
+* \[[`d0d2faf899`](https://github.com/nodejs/node/commit/d0d2faf899)] - **tools**: update lint-md-dependencies to rollup\@4.9.0 (Node.js GitHub Bot) [#51193](https://github.com/nodejs/node/pull/51193)
+* \[[`c96ef6533c`](https://github.com/nodejs/node/commit/c96ef6533c)] - **tools**: update eslint to 8.56.0 (Node.js GitHub Bot) [#51194](https://github.com/nodejs/node/pull/51194)
+* \[[`f4f781d493`](https://github.com/nodejs/node/commit/f4f781d493)] - **util**: pass invalidSubtypeIndex instead of trimmedSubtype to error (Gaurish Sethia) [#51264](https://github.com/nodejs/node/pull/51264)
+* \[[`867b484429`](https://github.com/nodejs/node/commit/867b484429)] - **watch**: clarify that the fileName parameter can be null (Luigi Pinca) [#51305](https://github.com/nodejs/node/pull/51305)
+* \[[`56e8969b65`](https://github.com/nodejs/node/commit/56e8969b65)] - **watch**: fix null `fileName` on windows systems (vnc5) [#49891](https://github.com/nodejs/node/pull/49891)
+* \[[`3f4fd6efbb`](https://github.com/nodejs/node/commit/3f4fd6efbb)] - **watch**: fix infinite loop when passing --watch=true flag (Pulkit Gupta) [#51160](https://github.com/nodejs/node/pull/51160)
+
## 2023-12-19, Version 21.5.0 (Current), @RafaelGSS
diff --git a/src/node_version.h b/src/node_version.h
index f5083bff8afd2d..60ab2eb9b4c7a0 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -23,13 +23,13 @@
#define SRC_NODE_VERSION_H_
#define NODE_MAJOR_VERSION 21
-#define NODE_MINOR_VERSION 5
-#define NODE_PATCH_VERSION 1
+#define NODE_MINOR_VERSION 6
+#define NODE_PATCH_VERSION 0
#define NODE_VERSION_IS_LTS 0
#define NODE_VERSION_LTS_CODENAME ""
-#define NODE_VERSION_IS_RELEASE 0
+#define NODE_VERSION_IS_RELEASE 1
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
diff --git a/tags.lock b/tags.lock
new file mode 100644
index 00000000000000..a524847d953af1
--- /dev/null
+++ b/tags.lock
@@ -0,0 +1 @@
+1109327
diff --git a/tags.temp b/tags.temp
new file mode 100644
index 00000000000000..063349b4384ff6
--- /dev/null
+++ b/tags.temp
@@ -0,0 +1,6655 @@
+!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/
+!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/
+!_TAG_PROGRAM_AUTHOR Darren Hiebert /dhiebert@users.sourceforge.net/
+!_TAG_PROGRAM_NAME Exuberant Ctags //
+!_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/
+!_TAG_PROGRAM_VERSION 5.9~svn20110310 //
+patch_android android_configure.py /^def patch_android():$/;" f
+android_ndk_path android_configure.py /^android_ndk_path = sys.argv[1]$/;" v
+android_sdk_version android_configure.py /^android_sdk_version = sys.argv[2]$/;" v
+arch android_configure.py /^arch = sys.argv[3]$/;" v
+DEST_CPU android_configure.py /^ DEST_CPU = "arm64"$/;" v
+TOOLCHAIN_PREFIX android_configure.py /^ TOOLCHAIN_PREFIX = "aarch64-linux-android"$/;" v
+arch android_configure.py /^ arch = "arm64"$/;" v
+DEST_CPU android_configure.py /^ DEST_CPU = "ia32"$/;" v
+TOOLCHAIN_PREFIX android_configure.py /^ TOOLCHAIN_PREFIX = "i686-linux-android"$/;" v
+DEST_CPU android_configure.py /^ DEST_CPU = "x64"$/;" v
+TOOLCHAIN_PREFIX android_configure.py /^ TOOLCHAIN_PREFIX = "x86_64-linux-android"$/;" v
+arch android_configure.py /^ arch = "x64"$/;" v
+host_os android_configure.py /^ host_os = "darwin"$/;" v
+toolchain_path android_configure.py /^ toolchain_path = android_ndk_path + "\/toolchains\/llvm\/prebuilt\/darwin-x86_64"$/;" v
+host_os android_configure.py /^ host_os = "linux"$/;" v
+toolchain_path android_configure.py /^ toolchain_path = android_ndk_path + "\/toolchains\/llvm\/prebuilt\/linux-x86_64"$/;" v
+InternalBindingMap typings/globals.d.ts /^interface InternalBindingMap {$/;" i
+InternalBindingKeys typings/globals.d.ts /^type InternalBindingKeys = keyof InternalBindingMap;$/;" t
+NodeJS typings/globals.d.ts /^ namespace NodeJS {$/;" c
+Global typings/globals.d.ts /^ interface Global {$/;" i
+UncurryThis typings/primordials.d.ts /^type UncurryThis unknown> =$/;" t
+UncurryThisStaticApply typings/primordials.d.ts /^type UncurryThisStaticApply unknown> =$/;" t
+StaticApply typings/primordials.d.ts /^type StaticApply unknown> =$/;" t
+UncurryMethod typings/primordials.d.ts /^type UncurryMethod =$/;" t
+UncurryMethodApply typings/primordials.d.ts /^type UncurryMethodApply =$/;" t
+UncurryGetter typings/primordials.d.ts /^type UncurryGetter =$/;" t
+UncurrySetter typings/primordials.d.ts /^type UncurrySetter =$/;" t
+TypedArrayContentType typings/primordials.d.ts /^type TypedArrayContentType = T extends { [k: number]: infer V } ? V : never;$/;" t
+primordials typings/primordials.d.ts /^declare namespace primordials {$/;" c
+uncurryThis typings/primordials.d.ts /^ export function uncurryThis unknown>(fn: T): UncurryThis;$/;" f
+uncurryThis typings/primordials.d.ts /^ export function uncurryThis unknown>(fn: T): UncurryThis;$/;" f
+uncurryThis typings/primordials.d.ts /^ export function uncurryThis unknown>(fn: T): UncurryThis;$/;" f
+makeSafe typings/primordials.d.ts /^ export function makeSafe(unsafe: NewableFunction, safe: T): T;$/;" f
+makeSafe typings/primordials.d.ts /^ export function makeSafe(unsafe: NewableFunction, safe: T): T;$/;" f
+makeSafe typings/primordials.d.ts /^ export function makeSafe(unsafe: NewableFunction, safe: T): T;$/;" f
+JSONParse typings/primordials.d.ts /^ export const JSONParse: typeof JSON.parse$/;" v
+JSONStringify typings/primordials.d.ts /^ export const JSONStringify: typeof JSON.stringify$/;" v
+MathAbs typings/primordials.d.ts /^ export const MathAbs: typeof Math.abs$/;" v
+MathAcos typings/primordials.d.ts /^ export const MathAcos: typeof Math.acos$/;" v
+MathAcosh typings/primordials.d.ts /^ export const MathAcosh: typeof Math.acosh$/;" v
+MathAsin typings/primordials.d.ts /^ export const MathAsin: typeof Math.asin$/;" v
+MathAsinh typings/primordials.d.ts /^ export const MathAsinh: typeof Math.asinh$/;" v
+MathAtan typings/primordials.d.ts /^ export const MathAtan: typeof Math.atan$/;" v
+MathAtanh typings/primordials.d.ts /^ export const MathAtanh: typeof Math.atanh$/;" v
+MathAtan2 typings/primordials.d.ts /^ export const MathAtan2: typeof Math.atan2$/;" v
+MathCeil typings/primordials.d.ts /^ export const MathCeil: typeof Math.ceil$/;" v
+MathCbrt typings/primordials.d.ts /^ export const MathCbrt: typeof Math.cbrt$/;" v
+MathExpm1 typings/primordials.d.ts /^ export const MathExpm1: typeof Math.expm1$/;" v
+MathClz32 typings/primordials.d.ts /^ export const MathClz32: typeof Math.clz32$/;" v
+MathCos typings/primordials.d.ts /^ export const MathCos: typeof Math.cos$/;" v
+MathCosh typings/primordials.d.ts /^ export const MathCosh: typeof Math.cosh$/;" v
+MathExp typings/primordials.d.ts /^ export const MathExp: typeof Math.exp$/;" v
+MathFloor typings/primordials.d.ts /^ export const MathFloor: typeof Math.floor$/;" v
+MathFround typings/primordials.d.ts /^ export const MathFround: typeof Math.fround$/;" v
+MathHypot typings/primordials.d.ts /^ export const MathHypot: typeof Math.hypot$/;" v
+MathImul typings/primordials.d.ts /^ export const MathImul: typeof Math.imul$/;" v
+MathLog typings/primordials.d.ts /^ export const MathLog: typeof Math.log$/;" v
+MathLog1p typings/primordials.d.ts /^ export const MathLog1p: typeof Math.log1p$/;" v
+MathLog2 typings/primordials.d.ts /^ export const MathLog2: typeof Math.log2$/;" v
+MathLog10 typings/primordials.d.ts /^ export const MathLog10: typeof Math.log10$/;" v
+MathMax typings/primordials.d.ts /^ export const MathMax: typeof Math.max$/;" v
+MathMaxApply typings/primordials.d.ts /^ export const MathMaxApply: StaticApply$/;" v
+MathMin typings/primordials.d.ts /^ export const MathMin: typeof Math.min$/;" v
+MathPow typings/primordials.d.ts /^ export const MathPow: typeof Math.pow$/;" v
+MathRandom typings/primordials.d.ts /^ export const MathRandom: typeof Math.random$/;" v
+MathRound typings/primordials.d.ts /^ export const MathRound: typeof Math.round$/;" v
+MathSign typings/primordials.d.ts /^ export const MathSign: typeof Math.sign$/;" v
+MathSin typings/primordials.d.ts /^ export const MathSin: typeof Math.sin$/;" v
+MathSinh typings/primordials.d.ts /^ export const MathSinh: typeof Math.sinh$/;" v
+MathSqrt typings/primordials.d.ts /^ export const MathSqrt: typeof Math.sqrt$/;" v
+MathTan typings/primordials.d.ts /^ export const MathTan: typeof Math.tan$/;" v
+MathTanh typings/primordials.d.ts /^ export const MathTanh: typeof Math.tanh$/;" v
+MathTrunc typings/primordials.d.ts /^ export const MathTrunc: typeof Math.trunc$/;" v
+MathE typings/primordials.d.ts /^ export const MathE: typeof Math.E$/;" v
+MathLN10 typings/primordials.d.ts /^ export const MathLN10: typeof Math.LN10$/;" v
+MathLN2 typings/primordials.d.ts /^ export const MathLN2: typeof Math.LN2$/;" v
+MathLOG10E typings/primordials.d.ts /^ export const MathLOG10E: typeof Math.LOG10E$/;" v
+MathLOG2E typings/primordials.d.ts /^ export const MathLOG2E: typeof Math.LOG2E$/;" v
+MathPI typings/primordials.d.ts /^ export const MathPI: typeof Math.PI$/;" v
+MathSQRT1_2 typings/primordials.d.ts /^ export const MathSQRT1_2: typeof Math.SQRT1_2$/;" v
+MathSQRT2 typings/primordials.d.ts /^ export const MathSQRT2: typeof Math.SQRT2$/;" v
+ReflectDefineProperty typings/primordials.d.ts /^ export const ReflectDefineProperty: typeof Reflect.defineProperty$/;" v
+ReflectDeleteProperty typings/primordials.d.ts /^ export const ReflectDeleteProperty: typeof Reflect.deleteProperty$/;" v
+ReflectApply typings/primordials.d.ts /^ export const ReflectApply: typeof Reflect.apply$/;" v
+ReflectConstruct typings/primordials.d.ts /^ export const ReflectConstruct: typeof Reflect.construct$/;" v
+ReflectGet typings/primordials.d.ts /^ export const ReflectGet: typeof Reflect.get$/;" v
+ReflectGetOwnPropertyDescriptor typings/primordials.d.ts /^ export const ReflectGetOwnPropertyDescriptor: typeof Reflect.getOwnPropertyDescriptor$/;" v
+ReflectGetPrototypeOf typings/primordials.d.ts /^ export const ReflectGetPrototypeOf: typeof Reflect.getPrototypeOf$/;" v
+ReflectHas typings/primordials.d.ts /^ export const ReflectHas: typeof Reflect.has$/;" v
+ReflectIsExtensible typings/primordials.d.ts /^ export const ReflectIsExtensible: typeof Reflect.isExtensible$/;" v
+ReflectOwnKeys typings/primordials.d.ts /^ export const ReflectOwnKeys: typeof Reflect.ownKeys$/;" v
+ReflectPreventExtensions typings/primordials.d.ts /^ export const ReflectPreventExtensions: typeof Reflect.preventExtensions$/;" v
+ReflectSet typings/primordials.d.ts /^ export const ReflectSet: typeof Reflect.set$/;" v
+ReflectSetPrototypeOf typings/primordials.d.ts /^ export const ReflectSetPrototypeOf: typeof Reflect.setPrototypeOf$/;" v
+AggregateErrorPrototype typings/primordials.d.ts /^ export const AggregateErrorPrototype: typeof AggregateError.prototype$/;" v
+ArrayPrototype typings/primordials.d.ts /^ export const ArrayPrototype: typeof Array.prototype$/;" v
+ArrayIsArray typings/primordials.d.ts /^ export const ArrayIsArray: typeof Array.isArray$/;" v
+ArrayFrom typings/primordials.d.ts /^ export const ArrayFrom: typeof Array.from$/;" v
+ArrayOf typings/primordials.d.ts /^ export const ArrayOf: typeof Array.of$/;" v
+ArrayPrototypeConcat typings/primordials.d.ts /^ export const ArrayPrototypeConcat: UncurryThis$/;" v
+ArrayPrototypeCopyWithin typings/primordials.d.ts /^ export const ArrayPrototypeCopyWithin: UncurryThis$/;" v
+ArrayPrototypeFill typings/primordials.d.ts /^ export const ArrayPrototypeFill: UncurryThis$/;" v
+ArrayPrototypeFind typings/primordials.d.ts /^ export const ArrayPrototypeFind: UncurryThis$/;" v
+ArrayPrototypeFindIndex typings/primordials.d.ts /^ export const ArrayPrototypeFindIndex: UncurryThis$/;" v
+ArrayPrototypeLastIndexOf typings/primordials.d.ts /^ export const ArrayPrototypeLastIndexOf: UncurryThis$/;" v
+ArrayPrototypePop typings/primordials.d.ts /^ export const ArrayPrototypePop: UncurryThis$/;" v
+ArrayPrototypePush typings/primordials.d.ts /^ export const ArrayPrototypePush: UncurryThis$/;" v
+ArrayPrototypePushApply typings/primordials.d.ts /^ export const ArrayPrototypePushApply: UncurryThisStaticApply$/;" v
+ArrayPrototypeReverse typings/primordials.d.ts /^ export const ArrayPrototypeReverse: UncurryThis$/;" v
+ArrayPrototypeShift typings/primordials.d.ts /^ export const ArrayPrototypeShift: UncurryThis$/;" v
+ArrayPrototypeUnshift typings/primordials.d.ts /^ export const ArrayPrototypeUnshift: UncurryThis$/;" v
+ArrayPrototypeUnshiftApply typings/primordials.d.ts /^ export const ArrayPrototypeUnshiftApply: UncurryThisStaticApply$/;" v
+ArrayPrototypeSlice typings/primordials.d.ts /^ export const ArrayPrototypeSlice: UncurryThis$/;" v
+ArrayPrototypeSort typings/primordials.d.ts /^ export const ArrayPrototypeSort: UncurryThis$/;" v
+ArrayPrototypeSplice typings/primordials.d.ts /^ export const ArrayPrototypeSplice: UncurryThis$/;" v
+ArrayPrototypeIncludes typings/primordials.d.ts /^ export const ArrayPrototypeIncludes: UncurryThis$/;" v
+ArrayPrototypeIndexOf typings/primordials.d.ts /^ export const ArrayPrototypeIndexOf: UncurryThis$/;" v
+ArrayPrototypeJoin typings/primordials.d.ts /^ export const ArrayPrototypeJoin: UncurryThis$/;" v
+ArrayPrototypeKeys typings/primordials.d.ts /^ export const ArrayPrototypeKeys: UncurryThis$/;" v
+ArrayPrototypeEntries typings/primordials.d.ts /^ export const ArrayPrototypeEntries: UncurryThis$/;" v
+ArrayPrototypeValues typings/primordials.d.ts /^ export const ArrayPrototypeValues: UncurryThis$/;" v
+ArrayPrototypeForEach typings/primordials.d.ts /^ export const ArrayPrototypeForEach: UncurryThis$/;" v
+ArrayPrototypeFilter typings/primordials.d.ts /^ export const ArrayPrototypeFilter: UncurryThis$/;" v
+ArrayPrototypeFlat typings/primordials.d.ts /^ export const ArrayPrototypeFlat: UncurryThis$/;" v
+ArrayPrototypeFlatMap typings/primordials.d.ts /^ export const ArrayPrototypeFlatMap: UncurryThis$/;" v
+ArrayPrototypeMap typings/primordials.d.ts /^ export const ArrayPrototypeMap: UncurryThis$/;" v
+ArrayPrototypeEvery typings/primordials.d.ts /^ export const ArrayPrototypeEvery: UncurryThis$/;" v
+ArrayPrototypeSome typings/primordials.d.ts /^ export const ArrayPrototypeSome: UncurryThis$/;" v
+ArrayPrototypeReduce typings/primordials.d.ts /^ export const ArrayPrototypeReduce: UncurryThis$/;" v
+ArrayPrototypeReduceRight typings/primordials.d.ts /^ export const ArrayPrototypeReduceRight: UncurryThis$/;" v
+ArrayPrototypeToLocaleString typings/primordials.d.ts /^ export const ArrayPrototypeToLocaleString: UncurryThis$/;" v
+ArrayPrototypeToString typings/primordials.d.ts /^ export const ArrayPrototypeToString: UncurryThis$/;" v
+ArrayPrototypeSymbolIterator typings/primordials.d.ts /^ export const ArrayPrototypeSymbolIterator: UncurryMethod;$/;" v
+ArrayBufferPrototype typings/primordials.d.ts /^ export const ArrayBufferPrototype: typeof ArrayBuffer.prototype$/;" v
+ArrayBufferIsView typings/primordials.d.ts /^ export const ArrayBufferIsView: typeof ArrayBuffer.isView$/;" v
+ArrayBufferPrototypeSlice typings/primordials.d.ts /^ export const ArrayBufferPrototypeSlice: UncurryThis$/;" v
+AsyncIteratorPrototype typings/primordials.d.ts /^ export const AsyncIteratorPrototype: AsyncIterable;$/;" v
+BigIntPrototype typings/primordials.d.ts /^ export const BigIntPrototype: typeof BigInt.prototype$/;" v
+BigIntAsUintN typings/primordials.d.ts /^ export const BigIntAsUintN: typeof BigInt.asUintN$/;" v
+BigIntAsIntN typings/primordials.d.ts /^ export const BigIntAsIntN: typeof BigInt.asIntN$/;" v
+BigIntPrototypeToLocaleString typings/primordials.d.ts /^ export const BigIntPrototypeToLocaleString: UncurryThis$/;" v
+BigIntPrototypeToString typings/primordials.d.ts /^ export const BigIntPrototypeToString: UncurryThis$/;" v
+BigIntPrototypeValueOf typings/primordials.d.ts /^ export const BigIntPrototypeValueOf: UncurryThis$/;" v
+BigInt64ArrayPrototype typings/primordials.d.ts /^ export const BigInt64ArrayPrototype: typeof BigInt64Array.prototype$/;" v
+BigInt64ArrayBYTES_PER_ELEMENT typings/primordials.d.ts /^ export const BigInt64ArrayBYTES_PER_ELEMENT: typeof BigInt64Array.BYTES_PER_ELEMENT$/;" v
+BigUint64ArrayPrototype typings/primordials.d.ts /^ export const BigUint64ArrayPrototype: typeof BigUint64Array.prototype$/;" v
+BigUint64ArrayBYTES_PER_ELEMENT typings/primordials.d.ts /^ export const BigUint64ArrayBYTES_PER_ELEMENT: typeof BigUint64Array.BYTES_PER_ELEMENT$/;" v
+BooleanPrototype typings/primordials.d.ts /^ export const BooleanPrototype: typeof Boolean.prototype$/;" v
+BooleanPrototypeToString typings/primordials.d.ts /^ export const BooleanPrototypeToString: UncurryThis$/;" v
+BooleanPrototypeValueOf typings/primordials.d.ts /^ export const BooleanPrototypeValueOf: UncurryThis$/;" v
+DataViewPrototype typings/primordials.d.ts /^ export const DataViewPrototype: typeof DataView.prototype$/;" v
+DataViewPrototypeGetInt8 typings/primordials.d.ts /^ export const DataViewPrototypeGetInt8: UncurryThis$/;" v
+DataViewPrototypeSetInt8 typings/primordials.d.ts /^ export const DataViewPrototypeSetInt8: UncurryThis$/;" v
+DataViewPrototypeGetUint8 typings/primordials.d.ts /^ export const DataViewPrototypeGetUint8: UncurryThis$/;" v
+DataViewPrototypeSetUint8 typings/primordials.d.ts /^ export const DataViewPrototypeSetUint8: UncurryThis$/;" v
+DataViewPrototypeGetInt16 typings/primordials.d.ts /^ export const DataViewPrototypeGetInt16: UncurryThis$/;" v
+DataViewPrototypeSetInt16 typings/primordials.d.ts /^ export const DataViewPrototypeSetInt16: UncurryThis$/;" v
+DataViewPrototypeGetUint16 typings/primordials.d.ts /^ export const DataViewPrototypeGetUint16: UncurryThis$/;" v
+DataViewPrototypeSetUint16 typings/primordials.d.ts /^ export const DataViewPrototypeSetUint16: UncurryThis$/;" v
+DataViewPrototypeGetInt32 typings/primordials.d.ts /^ export const DataViewPrototypeGetInt32: UncurryThis$/;" v
+DataViewPrototypeSetInt32 typings/primordials.d.ts /^ export const DataViewPrototypeSetInt32: UncurryThis$/;" v
+DataViewPrototypeGetUint32 typings/primordials.d.ts /^ export const DataViewPrototypeGetUint32: UncurryThis$/;" v
+DataViewPrototypeSetUint32 typings/primordials.d.ts /^ export const DataViewPrototypeSetUint32: UncurryThis$/;" v
+DataViewPrototypeGetFloat32 typings/primordials.d.ts /^ export const DataViewPrototypeGetFloat32: UncurryThis$/;" v
+DataViewPrototypeSetFloat32 typings/primordials.d.ts /^ export const DataViewPrototypeSetFloat32: UncurryThis$/;" v
+DataViewPrototypeGetFloat64 typings/primordials.d.ts /^ export const DataViewPrototypeGetFloat64: UncurryThis$/;" v
+DataViewPrototypeSetFloat64 typings/primordials.d.ts /^ export const DataViewPrototypeSetFloat64: UncurryThis$/;" v
+DataViewPrototypeGetBigInt64 typings/primordials.d.ts /^ export const DataViewPrototypeGetBigInt64: UncurryThis$/;" v
+DataViewPrototypeSetBigInt64 typings/primordials.d.ts /^ export const DataViewPrototypeSetBigInt64: UncurryThis$/;" v
+DataViewPrototypeGetBigUint64 typings/primordials.d.ts /^ export const DataViewPrototypeGetBigUint64: UncurryThis$/;" v
+DataViewPrototypeSetBigUint64 typings/primordials.d.ts /^ export const DataViewPrototypeSetBigUint64: UncurryThis$/;" v
+DataViewPrototypeGetBuffer typings/primordials.d.ts /^ export const DataViewPrototypeGetBuffer: UncurryGetter;$/;" v
+DataViewPrototypeGetByteLength typings/primordials.d.ts /^ export const DataViewPrototypeGetByteLength: UncurryGetter;$/;" v
+DataViewPrototypeGetByteOffset typings/primordials.d.ts /^ export const DataViewPrototypeGetByteOffset: UncurryGetter;$/;" v
+DatePrototype typings/primordials.d.ts /^ export const DatePrototype: typeof Date.prototype$/;" v
+DateNow typings/primordials.d.ts /^ export const DateNow: typeof Date.now$/;" v
+DateParse typings/primordials.d.ts /^ export const DateParse: typeof Date.parse$/;" v
+DateUTC typings/primordials.d.ts /^ export const DateUTC: typeof Date.UTC$/;" v
+DatePrototypeToString typings/primordials.d.ts /^ export const DatePrototypeToString: UncurryThis$/;" v
+DatePrototypeToDateString typings/primordials.d.ts /^ export const DatePrototypeToDateString: UncurryThis$/;" v
+DatePrototypeToTimeString typings/primordials.d.ts /^ export const DatePrototypeToTimeString: UncurryThis$/;" v
+DatePrototypeToISOString typings/primordials.d.ts /^ export const DatePrototypeToISOString: UncurryThis$/;" v
+DatePrototypeToUTCString typings/primordials.d.ts /^ export const DatePrototypeToUTCString: UncurryThis$/;" v
+DatePrototypeGetDate typings/primordials.d.ts /^ export const DatePrototypeGetDate: UncurryThis$/;" v
+DatePrototypeSetDate typings/primordials.d.ts /^ export const DatePrototypeSetDate: UncurryThis$/;" v
+DatePrototypeGetDay typings/primordials.d.ts /^ export const DatePrototypeGetDay: UncurryThis$/;" v
+DatePrototypeGetFullYear typings/primordials.d.ts /^ export const DatePrototypeGetFullYear: UncurryThis$/;" v
+DatePrototypeSetFullYear typings/primordials.d.ts /^ export const DatePrototypeSetFullYear: UncurryThis$/;" v
+DatePrototypeGetHours typings/primordials.d.ts /^ export const DatePrototypeGetHours: UncurryThis$/;" v
+DatePrototypeSetHours typings/primordials.d.ts /^ export const DatePrototypeSetHours: UncurryThis$/;" v
+DatePrototypeGetMilliseconds typings/primordials.d.ts /^ export const DatePrototypeGetMilliseconds: UncurryThis$/;" v
+DatePrototypeSetMilliseconds typings/primordials.d.ts /^ export const DatePrototypeSetMilliseconds: UncurryThis$/;" v
+DatePrototypeGetMinutes typings/primordials.d.ts /^ export const DatePrototypeGetMinutes: UncurryThis$/;" v
+DatePrototypeSetMinutes typings/primordials.d.ts /^ export const DatePrototypeSetMinutes: UncurryThis$/;" v
+DatePrototypeGetMonth typings/primordials.d.ts /^ export const DatePrototypeGetMonth: UncurryThis$/;" v
+DatePrototypeSetMonth typings/primordials.d.ts /^ export const DatePrototypeSetMonth: UncurryThis$/;" v
+DatePrototypeGetSeconds typings/primordials.d.ts /^ export const DatePrototypeGetSeconds: UncurryThis$/;" v
+DatePrototypeSetSeconds typings/primordials.d.ts /^ export const DatePrototypeSetSeconds: UncurryThis$/;" v
+DatePrototypeGetTime typings/primordials.d.ts /^ export const DatePrototypeGetTime: UncurryThis$/;" v
+DatePrototypeSetTime typings/primordials.d.ts /^ export const DatePrototypeSetTime: UncurryThis$/;" v
+DatePrototypeGetTimezoneOffset typings/primordials.d.ts /^ export const DatePrototypeGetTimezoneOffset: UncurryThis$/;" v
+DatePrototypeGetUTCDate typings/primordials.d.ts /^ export const DatePrototypeGetUTCDate: UncurryThis$/;" v
+DatePrototypeSetUTCDate typings/primordials.d.ts /^ export const DatePrototypeSetUTCDate: UncurryThis$/;" v
+DatePrototypeGetUTCDay typings/primordials.d.ts /^ export const DatePrototypeGetUTCDay: UncurryThis$/;" v
+DatePrototypeGetUTCFullYear typings/primordials.d.ts /^ export const DatePrototypeGetUTCFullYear: UncurryThis$/;" v
+DatePrototypeSetUTCFullYear typings/primordials.d.ts /^ export const DatePrototypeSetUTCFullYear: UncurryThis$/;" v
+DatePrototypeGetUTCHours typings/primordials.d.ts /^ export const DatePrototypeGetUTCHours: UncurryThis$/;" v
+DatePrototypeSetUTCHours typings/primordials.d.ts /^ export const DatePrototypeSetUTCHours: UncurryThis$/;" v
+DatePrototypeGetUTCMilliseconds typings/primordials.d.ts /^ export const DatePrototypeGetUTCMilliseconds: UncurryThis$/;" v
+DatePrototypeSetUTCMilliseconds typings/primordials.d.ts /^ export const DatePrototypeSetUTCMilliseconds: UncurryThis$/;" v
+DatePrototypeGetUTCMinutes typings/primordials.d.ts /^ export const DatePrototypeGetUTCMinutes: UncurryThis$/;" v
+DatePrototypeSetUTCMinutes typings/primordials.d.ts /^ export const DatePrototypeSetUTCMinutes: UncurryThis$/;" v
+DatePrototypeGetUTCMonth typings/primordials.d.ts /^ export const DatePrototypeGetUTCMonth: UncurryThis$/;" v
+DatePrototypeSetUTCMonth typings/primordials.d.ts /^ export const DatePrototypeSetUTCMonth: UncurryThis$/;" v
+DatePrototypeGetUTCSeconds typings/primordials.d.ts /^ export const DatePrototypeGetUTCSeconds: UncurryThis$/;" v
+DatePrototypeSetUTCSeconds typings/primordials.d.ts /^ export const DatePrototypeSetUTCSeconds: UncurryThis$/;" v
+DatePrototypeValueOf typings/primordials.d.ts /^ export const DatePrototypeValueOf: UncurryThis$/;" v
+DatePrototypeToJSON typings/primordials.d.ts /^ export const DatePrototypeToJSON: UncurryThis$/;" v
+DatePrototypeToLocaleString typings/primordials.d.ts /^ export const DatePrototypeToLocaleString: UncurryThis$/;" v
+DatePrototypeToLocaleDateString typings/primordials.d.ts /^ export const DatePrototypeToLocaleDateString: UncurryThis$/;" v
+DatePrototypeToLocaleTimeString typings/primordials.d.ts /^ export const DatePrototypeToLocaleTimeString: UncurryThis$/;" v
+DatePrototypeSymbolToPrimitive typings/primordials.d.ts /^ export const DatePrototypeSymbolToPrimitive: UncurryMethod;$/;" v
+ErrorPrototype typings/primordials.d.ts /^ export const ErrorPrototype: typeof Error.prototype$/;" v
+ErrorCaptureStackTrace typings/primordials.d.ts /^ export const ErrorCaptureStackTrace: typeof Error.captureStackTrace$/;" v
+ErrorPrototypeToString typings/primordials.d.ts /^ export const ErrorPrototypeToString: UncurryThis$/;" v
+EvalErrorPrototype typings/primordials.d.ts /^ export const EvalErrorPrototype: typeof EvalError.prototype$/;" v
+Float32ArrayPrototype typings/primordials.d.ts /^ export const Float32ArrayPrototype: typeof Float32Array.prototype$/;" v
+Float32ArrayBYTES_PER_ELEMENT typings/primordials.d.ts /^ export const Float32ArrayBYTES_PER_ELEMENT: typeof Float32Array.BYTES_PER_ELEMENT$/;" v
+Float64ArrayPrototype typings/primordials.d.ts /^ export const Float64ArrayPrototype: typeof Float64Array.prototype$/;" v
+Float64ArrayBYTES_PER_ELEMENT typings/primordials.d.ts /^ export const Float64ArrayBYTES_PER_ELEMENT: typeof Float64Array.BYTES_PER_ELEMENT$/;" v
+FunctionLength typings/primordials.d.ts /^ export const FunctionLength: typeof Function.length$/;" v
+FunctionName typings/primordials.d.ts /^ export const FunctionName: typeof Function.name$/;" v
+FunctionPrototype typings/primordials.d.ts /^ export const FunctionPrototype: typeof Function.prototype$/;" v
+FunctionPrototypeApply typings/primordials.d.ts /^ export const FunctionPrototypeApply: UncurryThis$/;" v
+FunctionPrototypeBind typings/primordials.d.ts /^ export const FunctionPrototypeBind: UncurryThis$/;" v
+FunctionPrototypeCall typings/primordials.d.ts /^ export const FunctionPrototypeCall: UncurryThis$/;" v
+FunctionPrototypeToString typings/primordials.d.ts /^ export const FunctionPrototypeToString: UncurryThis$/;" v
+Int16ArrayPrototype typings/primordials.d.ts /^ export const Int16ArrayPrototype: typeof Int16Array.prototype$/;" v
+Int16ArrayBYTES_PER_ELEMENT typings/primordials.d.ts /^ export const Int16ArrayBYTES_PER_ELEMENT: typeof Int16Array.BYTES_PER_ELEMENT$/;" v
+Int32ArrayPrototype typings/primordials.d.ts /^ export const Int32ArrayPrototype: typeof Int32Array.prototype$/;" v
+Int32ArrayBYTES_PER_ELEMENT typings/primordials.d.ts /^ export const Int32ArrayBYTES_PER_ELEMENT: typeof Int32Array.BYTES_PER_ELEMENT$/;" v
+Int8ArrayPrototype typings/primordials.d.ts /^ export const Int8ArrayPrototype: typeof Int8Array.prototype$/;" v
+Int8ArrayBYTES_PER_ELEMENT typings/primordials.d.ts /^ export const Int8ArrayBYTES_PER_ELEMENT: typeof Int8Array.BYTES_PER_ELEMENT$/;" v
+MapPrototype typings/primordials.d.ts /^ export const MapPrototype: typeof Map.prototype$/;" v
+MapPrototypeGet typings/primordials.d.ts /^ export const MapPrototypeGet: UncurryThis$/;" v
+MapPrototypeSet typings/primordials.d.ts /^ export const MapPrototypeSet: UncurryThis$/;" v
+MapPrototypeHas typings/primordials.d.ts /^ export const MapPrototypeHas: UncurryThis$/;" v
+MapPrototypeDelete typings/primordials.d.ts /^ export const MapPrototypeDelete: UncurryThis$/;" v
+MapPrototypeClear typings/primordials.d.ts /^ export const MapPrototypeClear: UncurryThis$/;" v
+MapPrototypeEntries typings/primordials.d.ts /^ export const MapPrototypeEntries: UncurryThis$/;" v
+MapPrototypeForEach typings/primordials.d.ts /^ export const MapPrototypeForEach: UncurryThis$/;" v
+MapPrototypeKeys typings/primordials.d.ts /^ export const MapPrototypeKeys: UncurryThis$/;" v
+MapPrototypeValues typings/primordials.d.ts /^ export const MapPrototypeValues: UncurryThis$/;" v
+MapPrototypeGetSize typings/primordials.d.ts /^ export const MapPrototypeGetSize: UncurryGetter;$/;" v
+NumberPrototype typings/primordials.d.ts /^ export const NumberPrototype: typeof Number.prototype$/;" v
+NumberIsFinite typings/primordials.d.ts /^ export const NumberIsFinite: typeof Number.isFinite$/;" v
+NumberIsInteger typings/primordials.d.ts /^ export const NumberIsInteger: typeof Number.isInteger$/;" v
+NumberIsNaN typings/primordials.d.ts /^ export const NumberIsNaN: typeof Number.isNaN$/;" v
+NumberIsSafeInteger typings/primordials.d.ts /^ export const NumberIsSafeInteger: typeof Number.isSafeInteger$/;" v
+NumberParseFloat typings/primordials.d.ts /^ export const NumberParseFloat: typeof Number.parseFloat$/;" v
+NumberParseInt typings/primordials.d.ts /^ export const NumberParseInt: typeof Number.parseInt$/;" v
+NumberMAX_VALUE typings/primordials.d.ts /^ export const NumberMAX_VALUE: typeof Number.MAX_VALUE$/;" v
+NumberMIN_VALUE typings/primordials.d.ts /^ export const NumberMIN_VALUE: typeof Number.MIN_VALUE$/;" v
+NumberNaN typings/primordials.d.ts /^ export const NumberNaN: typeof Number.NaN$/;" v
+NumberNEGATIVE_INFINITY typings/primordials.d.ts /^ export const NumberNEGATIVE_INFINITY: typeof Number.NEGATIVE_INFINITY$/;" v
+NumberPOSITIVE_INFINITY typings/primordials.d.ts /^ export const NumberPOSITIVE_INFINITY: typeof Number.POSITIVE_INFINITY$/;" v
+NumberMAX_SAFE_INTEGER typings/primordials.d.ts /^ export const NumberMAX_SAFE_INTEGER: typeof Number.MAX_SAFE_INTEGER$/;" v
+NumberMIN_SAFE_INTEGER typings/primordials.d.ts /^ export const NumberMIN_SAFE_INTEGER: typeof Number.MIN_SAFE_INTEGER$/;" v
+NumberEPSILON typings/primordials.d.ts /^ export const NumberEPSILON: typeof Number.EPSILON$/;" v
+NumberPrototypeToExponential typings/primordials.d.ts /^ export const NumberPrototypeToExponential: UncurryThis$/;" v
+NumberPrototypeToFixed typings/primordials.d.ts /^ export const NumberPrototypeToFixed: UncurryThis$/;" v
+NumberPrototypeToPrecision typings/primordials.d.ts /^ export const NumberPrototypeToPrecision: UncurryThis$/;" v
+NumberPrototypeToString typings/primordials.d.ts /^ export const NumberPrototypeToString: UncurryThis$/;" v
+NumberPrototypeValueOf typings/primordials.d.ts /^ export const NumberPrototypeValueOf: UncurryThis$/;" v
+NumberPrototypeToLocaleString typings/primordials.d.ts /^ export const NumberPrototypeToLocaleString: UncurryThis$/;" v
+ObjectPrototype typings/primordials.d.ts /^ export const ObjectPrototype: typeof Object.prototype$/;" v
+ObjectAssign typings/primordials.d.ts /^ export const ObjectAssign: typeof Object.assign$/;" v
+ObjectGetOwnPropertyDescriptor typings/primordials.d.ts /^ export const ObjectGetOwnPropertyDescriptor: typeof Object.getOwnPropertyDescriptor$/;" v
+ObjectGetOwnPropertyDescriptors typings/primordials.d.ts /^ export const ObjectGetOwnPropertyDescriptors: typeof Object.getOwnPropertyDescriptors$/;" v
+ObjectGetOwnPropertyNames typings/primordials.d.ts /^ export const ObjectGetOwnPropertyNames: typeof Object.getOwnPropertyNames$/;" v
+ObjectGetOwnPropertySymbols typings/primordials.d.ts /^ export const ObjectGetOwnPropertySymbols: typeof Object.getOwnPropertySymbols$/;" v
+ObjectIs typings/primordials.d.ts /^ export const ObjectIs: typeof Object.is$/;" v
+ObjectPreventExtensions typings/primordials.d.ts /^ export const ObjectPreventExtensions: typeof Object.preventExtensions$/;" v
+ObjectSeal typings/primordials.d.ts /^ export const ObjectSeal: typeof Object.seal$/;" v
+ObjectCreate typings/primordials.d.ts /^ export const ObjectCreate: typeof Object.create$/;" v
+ObjectDefineProperties typings/primordials.d.ts /^ export const ObjectDefineProperties: typeof Object.defineProperties$/;" v
+ObjectDefineProperty typings/primordials.d.ts /^ export const ObjectDefineProperty: typeof Object.defineProperty$/;" v
+ObjectFreeze typings/primordials.d.ts /^ export const ObjectFreeze: typeof Object.freeze$/;" v
+ObjectGetPrototypeOf typings/primordials.d.ts /^ export const ObjectGetPrototypeOf: typeof Object.getPrototypeOf$/;" v
+ObjectSetPrototypeOf typings/primordials.d.ts /^ export const ObjectSetPrototypeOf: typeof Object.setPrototypeOf$/;" v
+ObjectIsExtensible typings/primordials.d.ts /^ export const ObjectIsExtensible: typeof Object.isExtensible$/;" v
+ObjectIsFrozen typings/primordials.d.ts /^ export const ObjectIsFrozen: typeof Object.isFrozen$/;" v
+ObjectIsSealed typings/primordials.d.ts /^ export const ObjectIsSealed: typeof Object.isSealed$/;" v
+ObjectKeys typings/primordials.d.ts /^ export const ObjectKeys: typeof Object.keys$/;" v
+ObjectEntries typings/primordials.d.ts /^ export const ObjectEntries: typeof Object.entries$/;" v
+ObjectFromEntries typings/primordials.d.ts /^ export const ObjectFromEntries: typeof Object.fromEntries$/;" v
+ObjectValues typings/primordials.d.ts /^ export const ObjectValues: typeof Object.values$/;" v
+ObjectPrototypeHasOwnProperty typings/primordials.d.ts /^ export const ObjectPrototypeHasOwnProperty: UncurryThis$/;" v
+ObjectPrototypeIsPrototypeOf typings/primordials.d.ts /^ export const ObjectPrototypeIsPrototypeOf: UncurryThis$/;" v
+ObjectPrototypePropertyIsEnumerable typings/primordials.d.ts /^ export const ObjectPrototypePropertyIsEnumerable: UncurryThis$/;" v
+ObjectPrototypeToString typings/primordials.d.ts /^ export const ObjectPrototypeToString: UncurryThis$/;" v
+ObjectPrototypeValueOf typings/primordials.d.ts /^ export const ObjectPrototypeValueOf: UncurryThis$/;" v
+ObjectPrototypeToLocaleString typings/primordials.d.ts /^ export const ObjectPrototypeToLocaleString: UncurryThis$/;" v
+RangeErrorPrototype typings/primordials.d.ts /^ export const RangeErrorPrototype: typeof RangeError.prototype$/;" v
+ReferenceErrorPrototype typings/primordials.d.ts /^ export const ReferenceErrorPrototype: typeof ReferenceError.prototype$/;" v
+RegExpPrototype typings/primordials.d.ts /^ export const RegExpPrototype: typeof RegExp.prototype$/;" v
+RegExpPrototypeExec typings/primordials.d.ts /^ export const RegExpPrototypeExec: UncurryThis$/;" v
+RegExpPrototypeCompile typings/primordials.d.ts /^ export const RegExpPrototypeCompile: UncurryThis$/;" v
+RegExpPrototypeToString typings/primordials.d.ts /^ export const RegExpPrototypeToString: UncurryThis$/;" v
+RegExpPrototypeTest typings/primordials.d.ts /^ export const RegExpPrototypeTest: UncurryThis$/;" v
+RegExpPrototypeGetDotAll typings/primordials.d.ts /^ export const RegExpPrototypeGetDotAll: UncurryGetter;$/;" v
+RegExpPrototypeGetFlags typings/primordials.d.ts /^ export const RegExpPrototypeGetFlags: UncurryGetter;$/;" v
+RegExpPrototypeGetGlobal typings/primordials.d.ts /^ export const RegExpPrototypeGetGlobal: UncurryGetter;$/;" v
+RegExpPrototypeGetIgnoreCase typings/primordials.d.ts /^ export const RegExpPrototypeGetIgnoreCase: UncurryGetter;$/;" v
+RegExpPrototypeGetMultiline typings/primordials.d.ts /^ export const RegExpPrototypeGetMultiline: UncurryGetter;$/;" v
+RegExpPrototypeGetSource typings/primordials.d.ts /^ export const RegExpPrototypeGetSource: UncurryGetter;$/;" v
+RegExpPrototypeGetSticky typings/primordials.d.ts /^ export const RegExpPrototypeGetSticky: UncurryGetter;$/;" v
+RegExpPrototypeGetUnicode typings/primordials.d.ts /^ export const RegExpPrototypeGetUnicode: UncurryGetter;$/;" v
+SetLength typings/primordials.d.ts /^ export const SetLength: typeof Set.length$/;" v
+SetName typings/primordials.d.ts /^ export const SetName: typeof Set.name$/;" v
+SetPrototype typings/primordials.d.ts /^ export const SetPrototype: typeof Set.prototype$/;" v
+SetPrototypeHas typings/primordials.d.ts /^ export const SetPrototypeHas: UncurryThis$/;" v
+SetPrototypeAdd typings/primordials.d.ts /^ export const SetPrototypeAdd: UncurryThis$/;" v
+SetPrototypeDelete typings/primordials.d.ts /^ export const SetPrototypeDelete: UncurryThis$/;" v
+SetPrototypeClear typings/primordials.d.ts /^ export const SetPrototypeClear: UncurryThis$/;" v
+SetPrototypeEntries typings/primordials.d.ts /^ export const SetPrototypeEntries: UncurryThis$/;" v
+SetPrototypeForEach typings/primordials.d.ts /^ export const SetPrototypeForEach: UncurryThis$/;" v
+SetPrototypeValues typings/primordials.d.ts /^ export const SetPrototypeValues: UncurryThis$/;" v
+SetPrototypeKeys typings/primordials.d.ts /^ export const SetPrototypeKeys: UncurryThis$/;" v
+SetPrototypeGetSize typings/primordials.d.ts /^ export const SetPrototypeGetSize: UncurryGetter;$/;" v
+StringLength typings/primordials.d.ts /^ export const StringLength: typeof String.length$/;" v
+StringName typings/primordials.d.ts /^ export const StringName: typeof String.name$/;" v
+StringPrototype typings/primordials.d.ts /^ export const StringPrototype: typeof String.prototype$/;" v
+StringFromCharCode typings/primordials.d.ts /^ export const StringFromCharCode: typeof String.fromCharCode$/;" v
+StringFromCharCodeApply typings/primordials.d.ts /^ export const StringFromCharCodeApply: StaticApply$/;" v
+StringFromCodePoint typings/primordials.d.ts /^ export const StringFromCodePoint: typeof String.fromCodePoint$/;" v
+StringFromCodePointApply typings/primordials.d.ts /^ export const StringFromCodePointApply: StaticApply$/;" v
+StringRaw typings/primordials.d.ts /^ export const StringRaw: typeof String.raw$/;" v
+StringPrototypeAnchor typings/primordials.d.ts /^ export const StringPrototypeAnchor: UncurryThis$/;" v
+StringPrototypeBig typings/primordials.d.ts /^ export const StringPrototypeBig: UncurryThis$/;" v
+StringPrototypeBlink typings/primordials.d.ts /^ export const StringPrototypeBlink: UncurryThis$/;" v
+StringPrototypeBold typings/primordials.d.ts /^ export const StringPrototypeBold: UncurryThis$/;" v
+StringPrototypeCharAt typings/primordials.d.ts /^ export const StringPrototypeCharAt: UncurryThis$/;" v
+StringPrototypeCharCodeAt typings/primordials.d.ts /^ export const StringPrototypeCharCodeAt: UncurryThis$/;" v
+StringPrototypeCodePointAt typings/primordials.d.ts /^ export const StringPrototypeCodePointAt: UncurryThis$/;" v
+StringPrototypeConcat typings/primordials.d.ts /^ export const StringPrototypeConcat: UncurryThis$/;" v
+StringPrototypeEndsWith typings/primordials.d.ts /^ export const StringPrototypeEndsWith: UncurryThis$/;" v
+StringPrototypeFontcolor typings/primordials.d.ts /^ export const StringPrototypeFontcolor: UncurryThis$/;" v
+StringPrototypeFontsize typings/primordials.d.ts /^ export const StringPrototypeFontsize: UncurryThis$/;" v
+StringPrototypeFixed typings/primordials.d.ts /^ export const StringPrototypeFixed: UncurryThis$/;" v
+StringPrototypeIncludes typings/primordials.d.ts /^ export const StringPrototypeIncludes: UncurryThis$/;" v
+StringPrototypeIndexOf typings/primordials.d.ts /^ export const StringPrototypeIndexOf: UncurryThis$/;" v
+StringPrototypeItalics typings/primordials.d.ts /^ export const StringPrototypeItalics: UncurryThis$/;" v
+StringPrototypeLastIndexOf typings/primordials.d.ts /^ export const StringPrototypeLastIndexOf: UncurryThis$/;" v
+StringPrototypeLink typings/primordials.d.ts /^ export const StringPrototypeLink: UncurryThis$/;" v
+StringPrototypeLocaleCompare typings/primordials.d.ts /^ export const StringPrototypeLocaleCompare: UncurryThis$/;" v
+StringPrototypeMatch typings/primordials.d.ts /^ export const StringPrototypeMatch: UncurryThis$/;" v
+StringPrototypeMatchAll typings/primordials.d.ts /^ export const StringPrototypeMatchAll: UncurryThis$/;" v
+StringPrototypeNormalize typings/primordials.d.ts /^ export const StringPrototypeNormalize: UncurryThis$/;" v
+StringPrototypePadEnd typings/primordials.d.ts /^ export const StringPrototypePadEnd: UncurryThis$/;" v
+StringPrototypePadStart typings/primordials.d.ts /^ export const StringPrototypePadStart: UncurryThis$/;" v
+StringPrototypeRepeat typings/primordials.d.ts /^ export const StringPrototypeRepeat: UncurryThis$/;" v
+StringPrototypeReplace typings/primordials.d.ts /^ export const StringPrototypeReplace: UncurryThis$/;" v
+StringPrototypeSearch typings/primordials.d.ts /^ export const StringPrototypeSearch: UncurryThis$/;" v
+StringPrototypeSlice typings/primordials.d.ts /^ export const StringPrototypeSlice: UncurryThis$/;" v
+StringPrototypeSmall typings/primordials.d.ts /^ export const StringPrototypeSmall: UncurryThis$/;" v
+StringPrototypeSplit typings/primordials.d.ts /^ export const StringPrototypeSplit: UncurryThis$/;" v
+StringPrototypeStrike typings/primordials.d.ts /^ export const StringPrototypeStrike: UncurryThis$/;" v
+StringPrototypeSub typings/primordials.d.ts /^ export const StringPrototypeSub: UncurryThis$/;" v
+StringPrototypeSubstr typings/primordials.d.ts /^ export const StringPrototypeSubstr: UncurryThis$/;" v
+StringPrototypeSubstring typings/primordials.d.ts /^ export const StringPrototypeSubstring: UncurryThis$/;" v
+StringPrototypeSup typings/primordials.d.ts /^ export const StringPrototypeSup: UncurryThis$/;" v
+StringPrototypeStartsWith typings/primordials.d.ts /^ export const StringPrototypeStartsWith: UncurryThis$/;" v
+StringPrototypeToString typings/primordials.d.ts /^ export const StringPrototypeToString: UncurryThis$/;" v
+StringPrototypeTrim typings/primordials.d.ts /^ export const StringPrototypeTrim: UncurryThis$/;" v
+StringPrototypeTrimStart typings/primordials.d.ts /^ export const StringPrototypeTrimStart: UncurryThis$/;" v
+StringPrototypeTrimLeft typings/primordials.d.ts /^ export const StringPrototypeTrimLeft: UncurryThis$/;" v
+StringPrototypeTrimEnd typings/primordials.d.ts /^ export const StringPrototypeTrimEnd: UncurryThis$/;" v
+StringPrototypeTrimRight typings/primordials.d.ts /^ export const StringPrototypeTrimRight: UncurryThis$/;" v
+StringPrototypeToLocaleLowerCase typings/primordials.d.ts /^ export const StringPrototypeToLocaleLowerCase: UncurryThis$/;" v
+StringPrototypeToLocaleUpperCase typings/primordials.d.ts /^ export const StringPrototypeToLocaleUpperCase: UncurryThis$/;" v
+StringPrototypeToLowerCase typings/primordials.d.ts /^ export const StringPrototypeToLowerCase: UncurryThis$/;" v
+StringPrototypeToUpperCase typings/primordials.d.ts /^ export const StringPrototypeToUpperCase: UncurryThis$/;" v
+StringPrototypeToWellFormed typings/primordials.d.ts /^ export const StringPrototypeToWellFormed: UncurryThis$/;" v
+StringPrototypeValueOf typings/primordials.d.ts /^ export const StringPrototypeValueOf: UncurryThis$/;" v
+StringPrototypeReplaceAll typings/primordials.d.ts /^ export const StringPrototypeReplaceAll: UncurryThis$/;" v
+SymbolPrototype typings/primordials.d.ts /^ export const SymbolPrototype: typeof Symbol.prototype$/;" v
+SymbolFor typings/primordials.d.ts /^ export const SymbolFor: typeof Symbol.for$/;" v
+SymbolKeyFor typings/primordials.d.ts /^ export const SymbolKeyFor: typeof Symbol.keyFor$/;" v
+SymbolAsyncIterator typings/primordials.d.ts /^ export const SymbolAsyncIterator: typeof Symbol.asyncIterator$/;" v
+SymbolDispose typings/primordials.d.ts /^ export const SymbolDispose: typeof Symbol.dispose$/;" v
+SymbolAsyncDispose typings/primordials.d.ts /^ export const SymbolAsyncDispose: typeof Symbol.asyncDispose$/;" v
+SymbolHasInstance typings/primordials.d.ts /^ export const SymbolHasInstance: typeof Symbol.hasInstance$/;" v
+SymbolIsConcatSpreadable typings/primordials.d.ts /^ export const SymbolIsConcatSpreadable: typeof Symbol.isConcatSpreadable$/;" v
+SymbolIterator typings/primordials.d.ts /^ export const SymbolIterator: typeof Symbol.iterator$/;" v
+SymbolMatch typings/primordials.d.ts /^ export const SymbolMatch: typeof Symbol.match$/;" v
+SymbolMatchAll typings/primordials.d.ts /^ export const SymbolMatchAll: typeof Symbol.matchAll$/;" v
+SymbolReplace typings/primordials.d.ts /^ export const SymbolReplace: typeof Symbol.replace$/;" v
+SymbolSearch typings/primordials.d.ts /^ export const SymbolSearch: typeof Symbol.search$/;" v
+SymbolSpecies typings/primordials.d.ts /^ export const SymbolSpecies: typeof Symbol.species$/;" v
+SymbolSplit typings/primordials.d.ts /^ export const SymbolSplit: typeof Symbol.split$/;" v
+SymbolToPrimitive typings/primordials.d.ts /^ export const SymbolToPrimitive: typeof Symbol.toPrimitive$/;" v
+SymbolToStringTag typings/primordials.d.ts /^ export const SymbolToStringTag: typeof Symbol.toStringTag$/;" v
+SymbolUnscopables typings/primordials.d.ts /^ export const SymbolUnscopables: typeof Symbol.unscopables$/;" v
+SymbolPrototypeToString typings/primordials.d.ts /^ export const SymbolPrototypeToString: UncurryThis$/;" v
+SymbolPrototypeValueOf typings/primordials.d.ts /^ export const SymbolPrototypeValueOf: UncurryThis$/;" v
+SymbolPrototypeSymbolToPrimitive typings/primordials.d.ts /^ export const SymbolPrototypeSymbolToPrimitive: UncurryMethod;$/;" v
+SymbolPrototypeGetDescription typings/primordials.d.ts /^ export const SymbolPrototypeGetDescription: UncurryGetter;$/;" v
+SyntaxErrorPrototype typings/primordials.d.ts /^ export const SyntaxErrorPrototype: typeof SyntaxError.prototype$/;" v
+TypeErrorPrototype typings/primordials.d.ts /^ export const TypeErrorPrototype: typeof TypeError.prototype$/;" v
+TypedArrayFrom typings/primordials.d.ts /^ export function TypedArrayFrom($/;" f
+TypedArrayFrom typings/primordials.d.ts /^ export function TypedArrayFrom($/;" f
+TypedArrayFrom typings/primordials.d.ts /^ export function TypedArrayFrom($/;" f
+TypedArrayFrom typings/primordials.d.ts /^ export function TypedArrayFrom($/;" f
+TypedArrayFrom typings/primordials.d.ts /^ export function TypedArrayFrom($/;" f
+TypedArrayFrom typings/primordials.d.ts /^ export function TypedArrayFrom($/;" f
+TypedArrayOf typings/primordials.d.ts /^ export function TypedArrayOf($/;" f
+TypedArrayOf typings/primordials.d.ts /^ export function TypedArrayOf($/;" f
+TypedArrayOf typings/primordials.d.ts /^ export function TypedArrayOf($/;" f
+TypedArrayOfApply typings/primordials.d.ts /^ export function TypedArrayOfApply($/;" f
+TypedArrayOfApply typings/primordials.d.ts /^ export function TypedArrayOfApply($/;" f
+TypedArrayOfApply typings/primordials.d.ts /^ export function TypedArrayOfApply($/;" f
+TypedArrayPrototypeGetBuffer typings/primordials.d.ts /^ export const TypedArrayPrototypeGetBuffer: UncurryGetter;$/;" v
+TypedArrayPrototypeGetByteLength typings/primordials.d.ts /^ export const TypedArrayPrototypeGetByteLength: UncurryGetter;$/;" v
+TypedArrayPrototypeGetByteOffset typings/primordials.d.ts /^ export const TypedArrayPrototypeGetByteOffset: UncurryGetter;$/;" v
+TypedArrayPrototypeGetLength typings/primordials.d.ts /^ export const TypedArrayPrototypeGetLength: UncurryGetter;$/;" v
+TypedArrayPrototypeGetSymbolToStringTag typings/primordials.d.ts /^ export function TypedArrayPrototypeGetSymbolToStringTag(self: unknown):$/;" f
+TypedArrayPrototypeGetSymbolToStringTag typings/primordials.d.ts /^ export function TypedArrayPrototypeGetSymbolToStringTag(self: unknown):$/;" f
+TypedArrayPrototypeGetSymbolToStringTag typings/primordials.d.ts /^ export function TypedArrayPrototypeGetSymbolToStringTag(self: unknown):$/;" f
+URIErrorPrototype typings/primordials.d.ts /^ export const URIErrorPrototype: typeof URIError.prototype$/;" v
+Uint16ArrayPrototype typings/primordials.d.ts /^ export const Uint16ArrayPrototype: typeof Uint16Array.prototype$/;" v
+Uint16ArrayBYTES_PER_ELEMENT typings/primordials.d.ts /^ export const Uint16ArrayBYTES_PER_ELEMENT: typeof Uint16Array.BYTES_PER_ELEMENT$/;" v
+Uint32ArrayPrototype typings/primordials.d.ts /^ export const Uint32ArrayPrototype: typeof Uint32Array.prototype$/;" v
+Uint32ArrayBYTES_PER_ELEMENT typings/primordials.d.ts /^ export const Uint32ArrayBYTES_PER_ELEMENT: typeof Uint32Array.BYTES_PER_ELEMENT$/;" v
+Uint8ArrayPrototype typings/primordials.d.ts /^ export const Uint8ArrayPrototype: typeof Uint8Array.prototype$/;" v
+Uint8ArrayBYTES_PER_ELEMENT typings/primordials.d.ts /^ export const Uint8ArrayBYTES_PER_ELEMENT: typeof Uint8Array.BYTES_PER_ELEMENT$/;" v
+Uint8ClampedArrayPrototype typings/primordials.d.ts /^ export const Uint8ClampedArrayPrototype: typeof Uint8ClampedArray.prototype$/;" v
+Uint8ClampedArrayBYTES_PER_ELEMENT typings/primordials.d.ts /^ export const Uint8ClampedArrayBYTES_PER_ELEMENT: typeof Uint8ClampedArray.BYTES_PER_ELEMENT$/;" v
+WeakMapPrototype typings/primordials.d.ts /^ export const WeakMapPrototype: typeof WeakMap.prototype$/;" v
+WeakMapPrototypeDelete typings/primordials.d.ts /^ export const WeakMapPrototypeDelete: UncurryThis$/;" v
+WeakMapPrototypeGet typings/primordials.d.ts /^ export const WeakMapPrototypeGet: UncurryThis$/;" v
+WeakMapPrototypeSet typings/primordials.d.ts /^ export const WeakMapPrototypeSet: UncurryThis$/;" v
+WeakMapPrototypeHas typings/primordials.d.ts /^ export const WeakMapPrototypeHas: UncurryThis$/;" v
+WeakSetPrototype typings/primordials.d.ts /^ export const WeakSetPrototype: typeof WeakSet.prototype$/;" v
+WeakSetPrototypeDelete typings/primordials.d.ts /^ export const WeakSetPrototypeDelete: UncurryThis$/;" v
+WeakSetPrototypeHas typings/primordials.d.ts /^ export const WeakSetPrototypeHas: UncurryThis$/;" v
+WeakSetPrototypeAdd typings/primordials.d.ts /^ export const WeakSetPrototypeAdd: UncurryThis$/;" v
+PromisePrototype typings/primordials.d.ts /^ export const PromisePrototype: typeof Promise.prototype$/;" v
+PromiseAll typings/primordials.d.ts /^ export const PromiseAll: typeof Promise.all$/;" v
+PromiseRace typings/primordials.d.ts /^ export const PromiseRace: typeof Promise.race$/;" v
+PromiseResolve typings/primordials.d.ts /^ export const PromiseResolve: typeof Promise.resolve$/;" v
+PromiseReject typings/primordials.d.ts /^ export const PromiseReject: typeof Promise.reject$/;" v
+PromiseAllSettled typings/primordials.d.ts /^ export const PromiseAllSettled: typeof Promise.allSettled$/;" v
+PromiseAny typings/primordials.d.ts /^ export const PromiseAny: typeof Promise.any$/;" v
+PromisePrototypeThen typings/primordials.d.ts /^ export const PromisePrototypeThen: UncurryThis |