Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions features/iterator-join.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
name: Iterator join
description: "The `Iterator.prototype.join()` method concatenates all values from an iterator into a string without needing to materialize them into an array first."
spec: https://github.com/tc39/proposal-iterator-join
6 changes: 6 additions & 0 deletions features/iterator-join.yml.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Generated from: iterator-join.yml
# Do not edit this file by hand. Edit the source file instead!

status:
baseline: false
support: {}
4 changes: 4 additions & 0 deletions scripts/specs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,10 @@ const defaultAllowlist: allowlistItem[] = [
[
"https://github.com/whatwg/html/pull/9546",
"Allowed because the <input type=\"checkbox\" switch> feature is not yet in a formal spec. Remove this exception when a formal spec is available."
],
[
"https://github.com/tc39/proposal-iterator-join",
"Allowed because the iterator-join proposal is not yet part of ecma262."
]
];

Expand Down