Skip to content

Commit 61a42ad

Browse files
authored
Add experimental snapshot field (not published) (web-platform-dx#625)
1 parent 292ef63 commit 61a42ad

File tree

6 files changed

+7
-1
lines changed

6 files changed

+7
-1
lines changed

feature-group-definitions/array-at.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: Array at()
22
spec: https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.at
3+
snapshot: ecmascript-2022
34
status:
45
baseline: low
56
baseline_low_date: 2022-03-14

feature-group-definitions/array-flat.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Array flat() and flatMap()
22
caniuse: array-flat
33
spec: https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.flat
4+
snapshot: ecmascript-2019
45
status:
56
baseline: high
67
baseline_low_date: 2020-01-15

feature-group-definitions/async-await.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Async functions
22
spec: https://tc39.es/ecma262/multipage/ecmascript-language-functions-and-classes.html#sec-async-function-definitions
33
caniuse: async-functions
4+
snapshot: ecmascript-2017
45
status:
56
baseline: high
67
baseline_low_date: 2017-04-05

feature-group-definitions/bigint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: BigInt
22
spec: https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-bigint-objects
33
caniuse: bigint
4+
snapshot: ecmascript-2020
45
status:
56
baseline: high
67
baseline_low_date: 2020-09-16

feature-group-definitions/class-syntax.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Classes
22
caniuse: es6-class
33
spec: https://tc39.es/ecma262/multipage/ecmascript-language-functions-and-classes.html#sec-class-definitions
4+
snapshot: ecmascript-2015
45
status:
56
baseline: high
67
baseline_low_date: 2017-03-27

index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ const monthsFromBaselineLowToHigh = 30;
1313
// Some FeatureData keys aren't (and may never) be ready for publishing.
1414
// They're not part of the public schema (yet).
1515
const omittables = [
16-
"description"
16+
"description",
17+
"snapshot"
1718
]
1819

1920
function scrub(data: FeatureData) {

0 commit comments

Comments
 (0)