-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathmap.yml
51 lines (51 loc) · 2.3 KB
/
map.yml
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
name: Map (initial support)
description: Map objects hold key-value pairs and remember the original insertion order of the keys.
spec:
- https://tc39.es/ecma262/multipage/keyed-collections.html#sec-map-objects
- https://tc39.es/ecma262/multipage/keyed-collections.html#sec-map-constructor
- https://tc39.es/ecma262/multipage/keyed-collections.html#sec-map.prototype.clear
- https://tc39.es/ecma262/multipage/keyed-collections.html#sec-map.prototype.delete
- https://tc39.es/ecma262/multipage/keyed-collections.html#sec-map.prototype.entries
- https://tc39.es/ecma262/multipage/keyed-collections.html#sec-map.prototype.foreach
- https://tc39.es/ecma262/multipage/keyed-collections.html#sec-map.prototype.get
- https://tc39.es/ecma262/multipage/keyed-collections.html#sec-map.prototype.has
- https://tc39.es/ecma262/multipage/keyed-collections.html#sec-map.prototype.keys
- https://tc39.es/ecma262/multipage/keyed-collections.html#sec-map.prototype.set
- https://tc39.es/ecma262/multipage/keyed-collections.html#sec-get-map.prototype.size
- https://tc39.es/ecma262/multipage/keyed-collections.html#sec-map.prototype.values
- https://tc39.es/ecma262/multipage/keyed-collections.html#sec-map.prototype-@@iterator
- https://tc39.es/ecma262/multipage/keyed-collections.html#sec-get-map-@@species
snapshot: ecmascript-2015
group: maps
status:
baseline: high
baseline_low_date: 2015-07-29
# Editorial override has been applied to ignore Map.@@species
# https://github.com/web-platform-dx/web-features/pull/712#discussion_r1532483885
support:
chrome: "38"
chrome_android: "38"
edge: "12"
firefox: "13"
firefox_android: "14"
safari: "8"
safari_ios: "8"
compat_features:
- javascript.builtins.Map
- javascript.builtins.Map.Map
- javascript.builtins.Map.Map.iterable_allowed
- javascript.builtins.Map.Map.null_allowed
- javascript.builtins.Map.clear
- javascript.builtins.Map.delete
- javascript.builtins.Map.entries
- javascript.builtins.Map.forEach
- javascript.builtins.Map.get
- javascript.builtins.Map.has
- javascript.builtins.Map.key_equality_for_zeros
- javascript.builtins.Map.keys
- javascript.builtins.Map.set
- javascript.builtins.Map.size
- javascript.builtins.Map.values
- javascript.builtins.Map.@@iterator
- javascript.builtins.Map.@@species
test262: Map