From 7e96c402ca98f2776b3c60099c7a882831504b2f Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Fri, 17 Feb 2023 23:07:17 -0800 Subject: [PATCH] [readme] add es-shims implementation --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7718d0d..487ee2c 100644 --- a/README.md +++ b/README.md @@ -1420,7 +1420,7 @@ class AsyncPluginHost { constructor(arg) { if (arg !== privateConstructorSentinel) throw new TypeError("Use AsyncPluginHost.create() instead"); } - + // NOTE: there's no such thing as an async constructor static async create() { const host = new AsyncPluginHost(privateConstructorSentinel); @@ -1874,7 +1874,9 @@ The following is a high-level list of tasks to progress through each stage of th ## Implementations -- Built-ins from this proposal are available in [`core-js`](https://github.com/zloirock/core-js#explicit-resource-management) +- Built-ins from this proposal are available in: + - [`core-js`](https://github.com/zloirock/core-js#explicit-resource-management) + - es-shims [`disposablestack`](https://npmjs.com/disposablestack)