Skip to content

Commit

Permalink
Mark more engines as not supporting const/let
Browse files Browse the repository at this point in the history
Old FF and Edge don't support const and let in for-in loops, either.
  • Loading branch information
adrianheine committed Oct 12, 2018
1 parent 978f9fa commit fd0cbb5
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/support.js
Expand Up @@ -19,13 +19,13 @@ export const matrix = {
},
firefox: {
43: 0b010011101000110111011,
44: 0b010011101001110111011,
45: 0b010011101001110111111,
46: 0b010111101001110111111,
47: 0b010111101001111111111,
48: 0b010111101001111111111,
49: 0b010111101001111111111,
50: 0b010111101001111111111,
44: 0b010011101000110111011,
45: 0b010011101000110111111,
46: 0b010111101000110111111,
47: 0b010111101000111111111,
48: 0b010111101000111111111,
49: 0b010111101000111111111,
50: 0b010111101000111111111,
51: 0b010111101001111111111,
52: 0b111111111001111111111,
53: 0b111111111001111111111,
Expand All @@ -49,8 +49,8 @@ export const matrix = {
11: 0b010000000000000000001 // no let/const in for loops
},
edge: {
12: 0b010010101001010011011,
13: 0b010111101001110011111,
12: 0b010010101000010011011,
13: 0b010111101000110011111,
14: 0b111111101001111111111,
15: 0b111111101001111111111,
16: 0b111111101001111111111
Expand Down

0 comments on commit fd0cbb5

Please sign in to comment.