-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfeatures.json
453 lines (452 loc) · 20 KB
/
features.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
{
"specification": [
{
"name": "ES6",
"url": "http://wiki.ecmascript.org/doku.php?id=harmony:specification_drafts",
"keywords": ["es6", "es2015", "ecmascript"],
"status": {
"status": "Supported"
},
"contact": [
{
"name": "Saam Barati",
"email": "[email protected]",
"twitter": "@saambarati"
},
{
"name": "Keith Miller",
"email": "[email protected]"
}
]
},
{
"name": "ES7",
"url": "https://github.com/tc39/ecma262",
"keywords": ["es7", "ecmascript"]
},
{
"name": "ESNext",
"url": "https://github.com/tc39/ecma262",
"keywords": ["esnext", "ecmascript"]
},
{
"name": "Internationalization API",
"status": {
"status": "Supported"
},
"url": "http://ecma-international.org/publications/standards/Ecma-402.htm",
"documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl",
"webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=90906",
"description": "The Internationalization API provides language sensitive operations for string, number, and date.",
"keywords": ["Intl", "Collator", "ECMA-402"]
},
{
"name": "WebAssembly",
"status": {
"status": "Supported"
},
"url": "http://webassembly.github.io",
"webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=146064",
"description": "WebAssembly is a new format for native programs on the web. It aims to support everything that asm.js supports, but allows the VM to sidestep the JS parsing and profiling pipeline entirely.",
"keywords": ["webassembly", "wasm", "webassy"],
"contact": {
"name": "Jon Davis",
"email": "[email protected]",
"twitter": "@jonathandavis"
}
}
],
"features": [
{
"name": "Array.prototype.copyWithin",
"status": {
"status": "Supported",
"enabled-by-default": true
},
"url": "https://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.prototype.copywithin",
"documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/copyWithin",
"webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=145107",
"specification": "ES6",
"contact": {
"name": "Yusuke Suzuki",
"email": "[email protected]"
}
},
{
"name": "Array.prototype.includes",
"status": {
"status": "Supported",
"enabled-by-default": true
},
"url": "https://github.com/tc39/Array.prototype.includes",
"documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/includes",
"webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=142707",
"specification": "ES7"
},
{
"name": "Arrow Functions",
"status": {
"status": "Supported",
"enabled-by-default": true
},
"url": "http://www.ecma-international.org/ecma-262/6.0/index.html#sec-arrow-function-definitions",
"documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions",
"description": "Arrow functions are a new type of function expression in ES6 that lexically binds this, new.target, arguments, and super.",
"specification": "ES6"
},
{
"name": "Async Iteration",
"status": {
"status": "Supported",
"enabled-by-default": true
},
"url": "https://tc39.github.io/proposal-async-iteration/",
"documentation-url": "http://2ality.com/2016/10/asynchronous-iteration.html",
"webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=166693",
"description": "This feature adds syntactic support for asynchronous iteration using the AsyncIterable and AsyncIterator protocols. It introduces a new IterationStatement, for-await-of, and adds syntax for creating async generator functions and methods.",
"specification": "ESNext",
"contact": {
"name": "Oleksandr Skachkov",
"twitter": "@alSkachkov",
"email": "[email protected]"
}
},
{
"name": "BigInt",
"status": {
"status": "Supported",
"enabled-by-default": true
},
"url": "https://tc39.es/proposal-bigint/",
"description": "BigInt is a new primitive that offers arbitrary-precision integers.",
"specification": "ESNext"
},
{
"name": "Block Scoping",
"status": {
"status": "Supported",
"enabled-by-default": true
},
"url": "http://www.ecma-international.org/ecma-262/6.0/#sec-let-and-const-declarations",
"documentation-url": "http://www.2ality.com/2015/02/es6-scoping.html",
"description": "Block Scoping let/const/class variables are a new way of declaring variables that are local to the block they're defined in. They have clearer scoping semantics than var variables.",
"specification": "ES6"
},
{
"name": "Classes",
"status": {
"status": "Supported",
"enabled-by-default": true
},
"url": "http://www.ecma-international.org/ecma-262/6.0/#sec-class-definitions",
"documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes",
"description": "Classes are a way to write object oriented code in JavaScript with standard syntax and semantics.",
"specification": "ES6"
},
{
"name": "Default Parameter Values",
"status": {
"status": "Supported",
"enabled-by-default": true
},
"url": "http://www.ecma-international.org/ecma-262/6.0/#sec-function-definitions",
"documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Default_parameters",
"description": "Default parameter values are a convenient way to specify expressions that parameters should evaluate to when undefined (or nothing) is passed in as a function argument.",
"specification": "ES6"
},
{
"name": "Destructuring Syntax",
"status": {
"status": "Supported",
"enabled-by-default": true
},
"url": "http://www.ecma-international.org/ecma-262/6.0/#sec-destructuring-assignment",
"documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment",
"description": "Destructuring syntax is a shorthand form that allows you to easily assign local variables to the values of an object or array's properties.",
"specification": "ES6"
},
{
"name": "Exponentiation Syntax",
"status": {
"status": "Supported",
"enabled-by-default": true
},
"url": "https://tc39.github.io/ecma262/#prod-ExponentiationExpression",
"specification": "ES7",
"description": "Exponentiation syntax (like x ** y) provides the syntax suger for exponentiation.",
"webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=159969",
"documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Arithmetic_Operators#Exponentiation_(**)",
"contact": {
"name": "Yusuke Suzuki",
"twitter": "@Constellation",
"email": "[email protected]"
}
},
{
"name": "Generators",
"status": {
"status": "Supported",
"enabled-by-default": true
},
"url": "http://www.ecma-international.org/ecma-262/6.0/index.html#sec-generator-objects",
"specification": "ES6",
"description": "An iterative function object that is interruptible and resumable. Generators are currently spec compliant, however, we're still actively working on improving their performance.",
"webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=150290",
"documentation-url": "https://hacks.mozilla.org/2015/05/es6-in-depth-generators/",
"contact": {
"name": "Yusuke Suzuki",
"twitter": "@Constellation",
"email": "[email protected]"
}
},
{
"name": "Map Data Structure",
"status": {
"status": "Supported",
"enabled-by-default": true
},
"url": "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-map-constructor",
"documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map",
"webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=120333",
"description": "Map provides an <a href=\"https://en.wikipedia.org/wiki/Associative_array\">associative array data</a> structure that maps keys to values.",
"specification": "ES6"
},
{
"name": "Modules",
"status": {
"status": "Supported",
"enabled-by-default": true
},
"url": "http://www.ecma-international.org/ecma-262/6.0/index.html#sec-modules",
"documentation-url": "https://hacks.mozilla.org/2015/08/es6-in-depth-modules/",
"description": "Modules make modularizing code and splitting it across different files easy because the syntax and semantics are now standard in the JavaScript langauge.",
"specification": "ES6",
"comment": "Modules can be loaded through script type=\"module\" tags. It is also possible to use Modules with the jsc command line tool by passing the -m flag."
},
{
"name": "Number Object Extensions",
"status": {
"status": "Supported",
"enabled-by-default": true
},
"url": "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-number-objects",
"documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number",
"webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=131707",
"specification": "ES6",
"description": "Extend Number with the methods Number.isFinite(), Number.isInteger(), Number.isSafeInteger(), Number.isNaN() and the attributes Number.EPSILON, Number.MIN_SAFE_INTEGER, Number.MAX_SAFE_INTEGER."
},
{
"name": "Object rest/spread",
"status": {
"status": "Supported",
"enabled-by-default": true
},
"url": "https://github.com/tc39/proposal-object-rest-spread",
"documentation-url": "http://2ality.com/2016/10/rest-spread-properties.html",
"specification": "ESNext",
"description": "New syntax for gathering the rest of an object's properties when using destructuring."
},
{
"name": "Octal and Binary Literals",
"status": {
"status": "Supported",
"enabled-by-default": true
},
"url": "https://people.mozilla.org/~jorendorff/es6-draft.html#sec-literals-numeric-literals",
"webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=142681",
"specification": "ES6",
"description": "New syntax for number literals. Numbers can be provided as binary (e.g. 0b001001) or octal (e.g. 0o24)."
},
{
"name": "Promise Objects",
"status": {
"status": "Supported",
"enabled-by-default": true,
"shipped": ["ios8-safari", "osx-safari-7.1"]
},
"url": "https://people.mozilla.org/~jorendorff/es6-draft.html#sec-promise-objects",
"documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise",
"webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=120260",
"specification": "ES6"
},
{
"name": "Proxy Objects",
"status": {
"status": "Supported"
},
"url": "http://www.ecma-international.org/ecma-262/6.0/index.html#sec-proxy-objects",
"webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=35731",
"specification": "ES6",
"description": "An intermediary object that defines custom basic behaviors of another object such as property lookup, assignment, enumeration.",
"contact": {
"name": "Jon Davis",
"twitter": "@jonathandavis",
"email": "[email protected]"
}
},
{
"name": "Reflect API",
"status": {
"status": "Supported",
"enabled-by-default": true
},
"url": "http://www.ecma-international.org/ecma-262/6.0/#sec-reflect-object",
"documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect",
"description": "The Reflect API is a way to set properties and call methods on certain objects that can be intercepted by ES6 Proxies.",
"specification": "ES6"
},
{
"name": "Rest Parameter",
"status": {
"status": "Supported",
"enabled-by-default": true
},
"url": "http://www.ecma-international.org/ecma-262/6.0/#sec-function-definitions",
"documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/rest_parameters",
"description": "Rest parameters allow you to collect the arguments, or the arguments after some offset, of a function into a JS array.",
"specification": "ES6",
"contact": {
"name": "Saam Barati",
"email": "[email protected]",
"twitter": "@saambarati"
}
},
{
"name": "Set Data Structure",
"status": {
"status": "Supported",
"enabled-by-default": true
},
"url": "https://people.mozilla.org/~jorendorff/es6-draft.html#sec-set-constructor",
"documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set",
"webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=120549",
"description": "Set is a collection of unique objects.",
"specification": "ES6"
},
{
"name": "Symbol Objects",
"status": {
"status": "Supported",
"enabled-by-default": true
},
"url": "https://people.mozilla.org/~jorendorff/es6-draft.html#sec-symbol-objects",
"documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol",
"webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=140435",
"specification": "ES6",
"contact": {
"name": "Yusuke Suzuki",
"email": "[email protected]"
}
},
{
"name": "Tagged Templates",
"status": {
"status": "Supported",
"enabled-by-default": true
},
"url": "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-tagged-templates",
"documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/template_strings",
"webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=143183",
"description": "The tagged-templates (like String.raw`Hello ${World}`) provides a way to modify the produced string from a given template-literals with a function.",
"specification": "ES6",
"contact": {
"name": "Yusuke Suzuki",
"email": "[email protected]"
}
},
{
"name": "Tail Calls",
"status": {
"status": "Supported",
"enabled-by-default": true
},
"url": "http://www.ecma-international.org/ecma-262/6.0/index.html#sec-tail-position-calls",
"documentation-url": "http://www.2ality.com/2015/06/tail-call-optimization.html",
"description": "Tail Calls allow you to make function calls that are in tail position without growing the stack. It is commonly used to write loops using function calls instead of for or while syntax.",
"specification": "ES6"
},
{
"name": "Template Literals",
"status": {
"status": "Supported",
"enabled-by-default": true
},
"url": "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-template-literals",
"documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/template_strings",
"webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=142691",
"description": "The template-literals (like `Hello ${World}`) provides string interpolation feature. Line terminators are also allowed in the template-literals.",
"specification": "ES6",
"contact": {
"name": "Yusuke Suzuki",
"email": "[email protected]"
}
},
{
"name": "WeakMap",
"status": {
"status": "Supported",
"enabled-by-default": true
},
"url": "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-weakmap-objects",
"documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap",
"webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=120912",
"description": "WeakMap provides an <a href=\"https://en.wikipedia.org/wiki/Associative_array\">associative array data</a> structure that maps keys to values. WeakMap's keys must be objects.",
"specification": "ES6"
},
{
"name": "WeakSet",
"status": {
"status": "Supported",
"enabled-by-default": true
},
"url": "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-weakset-objects",
"documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet",
"webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=142408",
"description": "WeakSet is a collection of unique objects. Keys stored in WeakSet are referenced weakly.",
"specification": "ES6",
"contact": {
"name": "Yusuke Suzuki",
"email": "[email protected]"
}
},
{
"name": "async/await",
"status": {
"status": "Supported",
"enabled-by-default": true
},
"url": "https://tc39.github.io/ecma262/#sec-async-function-definitions",
"documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function",
"description": "Async functions are a way to mix generators with promises to allow writing asynchronous code that looks synchronous.",
"specification": "ES7",
"contact": {
"name": "Saam Barati",
"twitter": "@saambarati",
"email": "[email protected]"
}
},
{
"name": "for...of Loops",
"status": {
"status": "Supported",
"enabled-by-default": true
},
"url": "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-for-in-and-for-of-statements",
"documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for...of",
"description": "The for...of loops iterate over the values provided by the iterator of the target object.",
"specification": "ES6",
"comment": "Older versions of WebKit only supported iterating JavaScript arrays."
},
{
"name": "new.target",
"status": {
"status": "Supported",
"enabled-by-default": true
},
"url": "http://www.ecma-international.org/ecma-262/6.0/#sec-built-in-function-objects",
"documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/new.target",
"description": "new.target allows you to detect if a function or constructor was instantiated with the new operator, or if instead it was called using normal function calling syntax.",
"specification": "ES6"
}
]
}