diff --git a/features/async-iterable-streams.yml b/features/async-iterable-streams.yml new file mode 100644 index 00000000000..48f5acdc303 --- /dev/null +++ b/features/async-iterable-streams.yml @@ -0,0 +1,6 @@ +name: Asynchronously iterable streams +description: Asynchronous iteration of a stream allows you to use `for await...of` loops to iterate through a stream's incoming data. +spec: https://streams.spec.whatwg.org/#rs-asynciterator +group: streams +compat_features: + - api.ReadableStream.@@asyncIterator diff --git a/features/async-iterable-streams.yml.dist b/features/async-iterable-streams.yml.dist new file mode 100644 index 00000000000..20f556d9170 --- /dev/null +++ b/features/async-iterable-streams.yml.dist @@ -0,0 +1,13 @@ +# Generated from: async-iterable-streams.yml +# Do not edit this file by hand. Edit the source file instead! + +status: + baseline: false + support: + chrome: "124" + chrome_android: "124" + edge: "124" + firefox: "110" + firefox_android: "110" +compat_features: + - api.ReadableStream.@@asyncIterator diff --git a/features/streams.yml b/features/streams.yml index 3676afb8383..f36a5c393a3 100644 --- a/features/streams.yml +++ b/features/streams.yml @@ -2,6 +2,7 @@ name: Streams description: The streams API creates, composes, and consumes continuously generated data. spec: https://streams.spec.whatwg.org/ caniuse: streams +group: streams # TODO: Later support # - api.ReadableStreamDefaultController # - api.ReadableStreamDefaultController.close diff --git a/groups/streams.yml b/groups/streams.yml new file mode 100644 index 00000000000..a908441f1b3 --- /dev/null +++ b/groups/streams.yml @@ -0,0 +1,2 @@ +# https://streams.spec.whatwg.org/ +name: Streams \ No newline at end of file