From 829189b4f983185487f931f1bfb1e6a526d1ea7e Mon Sep 17 00:00:00 2001 From: ilias bhallil Date: Sat, 25 Jan 2025 14:16:39 +0700 Subject: [PATCH 1/2] Add polyfill section --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 378c4b4..cdb046e 100644 --- a/README.md +++ b/README.md @@ -705,3 +705,12 @@ Error: Call stack [domain module postmortem]: https://nodejs.org/en/docs/guides/domain-postmortem/ [solution.md]: ./SOLUTION.md [scoping.md]: ./SCOPING.md + + +# Polyfills + +| Polyfill | Repo | Status | +| -------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------- | +| **[simple-async-context](https://www.npmjs.com/package/simple-async-context)** | [iliasbhal/simple-async-context](https://github.com/iliasbhal/simple-async-context) | Beta release available | + +If you're working on a polyfill, please file an issue or PR so we can add yours here. From 1e3f19a6972c4c211cc048bb31dcda3af1ebb82b Mon Sep 17 00:00:00 2001 From: ilias bhallil Date: Sat, 25 Jan 2025 14:37:23 +0700 Subject: [PATCH 2/2] Update README.md --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cdb046e..898f11b 100644 --- a/README.md +++ b/README.md @@ -711,6 +711,10 @@ Error: Call stack | Polyfill | Repo | Status | | -------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------- | -| **[simple-async-context](https://www.npmjs.com/package/simple-async-context)** | [iliasbhal/simple-async-context](https://github.com/iliasbhal/simple-async-context) | Beta release available | +| **[simple-async-context](https://www.npmjs.com/package/simple-async-context)** | [iliasbhal/simple-async-context](https://github.com/iliasbhal/simple-async-context) | Beta release available | If you're working on a polyfill, please file an issue or PR so we can add yours here. + +A [non-production polyfill](https://github.com/tc39/proposal-async-context/tree/master/src) was built to validate this proposal. This polyfill continues to live in this repo, but only for the purposes of running tests and powering the documentation "playground" as described below. + +DO NOT use this polyfill in your own projects! Instead, please use a polyfill from the table above.