From 0381b5187c128ca307600ecd07352fc03317949e Mon Sep 17 00:00:00 2001 From: Dominic Farolino Date: Fri, 10 Nov 2023 15:11:09 -0500 Subject: [PATCH] Revert "Add `Subscriber#active` boolean (#80)" This reverts commit 72e7ad52ee8e6ac320ba849550446d50a0ba970d. --- README.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/README.md b/README.md index 75b1a61..77e7cb3 100644 --- a/README.md +++ b/README.md @@ -314,11 +314,6 @@ interface Subscriber { undefined error(any error); undefined addTeardown(VoidFunction teardown); - // True after the Subscriber is created, up until either - // `complete()`/`error()` are invoked, or the subscriber unsubscribes. Inside - // `complete()`/`error()`, this attribute is true. - readonly attribute boolean active; - readonly attribute AbortSignal signal; };