Skip to content

Commit

Permalink
Add support data for newer engine versions
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianheine committed Oct 12, 2018
1 parent f311900 commit bc02c36
Showing 1 changed file with 25 additions and 5 deletions.
30 changes: 25 additions & 5 deletions src/support.js
Expand Up @@ -15,7 +15,15 @@ export const matrix = {
60: 0b111111111001111111111,
61: 0b111111111001111111111,
62: 0b111111111001111111111,
63: 0b111111111001111111111
63: 0b111111111001111111111,
64: 0b111111111001111111111,
65: 0b111111111001111111111,
66: 0b111111111001111111111,
67: 0b111111111001111111111,
68: 0b111111111001111111111,
69: 0b111111111001111111111,
70: 0b111111111001111111111,
71: 0b111111111001111111111
},
firefox: {
43: 0b010011101000110111011,
Expand All @@ -33,14 +41,22 @@ export const matrix = {
55: 0b111111111001111111111,
56: 0b111111111001111111111,
57: 0b111111111001111111111,
58: 0b111111111001111111111
58: 0b111111111001111111111,
59: 0b111111111001111111111,
60: 0b111111111001111111111,
61: 0b111111111001111111111,
62: 0b111111111001111111111,
63: 0b111111111001111111111,
64: 0b111111111001111111111
},
safari: {
8: 0b010000000000000001001,
9: 0b010010001000011011101,
10: 0b110111111001111111111,
'10.1': 0b111111111001111111111,
11: 0b111111111001111111111
11: 0b111111111001111111111,
'11.1': 0b111111111001111111111,
12: 0b111111111001111111111
},
ie: {
8: 0b000000000000000000000,
Expand All @@ -53,7 +69,10 @@ export const matrix = {
13: 0b010111101000110011111,
14: 0b111111101001111111111,
15: 0b111111101001111111111,
16: 0b111111101001111111111
16: 0b111111101001111111111,
17: 0b111111101001111111111,
18: 0b111111101001111111111,
19: 0b111111101001111111111
},
node: {
'0.10': 0b010000000000000000001,
Expand All @@ -63,7 +82,8 @@ export const matrix = {
6: 0b010111111001111111111,
8: 0b111111111001111111111,
'8.3': 0b111111111001111111111,
'8.7': 0b111111111001111111111
'8.7': 0b111111111001111111111,
'8.10': 0b111111111001111111111
}
};

Expand Down

0 comments on commit bc02c36

Please sign in to comment.