From 9af697d98800444a2f8e9cf20b0863b5e858a69a Mon Sep 17 00:00:00 2001 From: Firkraag Date: Wed, 2 Aug 2023 10:15:57 +0800 Subject: [PATCH] Update implementations.md with promise implementation from https://github.com/Firkraag/promise --- implementations.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/implementations.md b/implementations.md index b2eb879..7dbffff 100644 --- a/implementations.md +++ b/implementations.md @@ -269,7 +269,12 @@ The "Promise Objects" section of the ECMAScript specification has many additiona promiscuous A minimal and fast promise/deferred implementation 1.0 - + + + promise + A Promise/A+ implementation with new ES6 features + 1.0 + Promise3 A very easy-to-read source code of Promise implementation, good to learn how Promise works inside