Skip to content

Commit fbc9e7b

Browse files
authoredJan 29, 2024
feat: Update es-builtins (#174)
* fix: Update es-builtins * fix: Update es-builtins to include general apis * fix: More missing builtins * fix: Some tests depend on Number and Object not being added in 0.10.0
1 parent 372b283 commit fbc9e7b

File tree

1 file changed

+498
-28
lines changed

1 file changed

+498
-28
lines changed
 

‎lib/rules/no-unsupported-features/es-builtins.js

+498-28
Original file line numberDiff line numberDiff line change
@@ -14,136 +14,606 @@ const getConfiguredNodeVersion = require("../../util/get-configured-node-version
1414

1515
const trackMap = {
1616
globals: {
17+
// Core js builtins
1718
AggregateError: {
1819
[READ]: { supported: "15.0.0" },
1920
},
2021
Array: {
22+
[READ]: { supported: "0.10.0" },
2123
from: { [READ]: { supported: "4.0.0" } },
24+
isArray: { [READ]: { supported: "0.10.0" } },
25+
length: { [READ]: { supported: "0.10.0" } },
2226
of: { [READ]: { supported: "4.0.0" } },
27+
toLocaleString: { [READ]: { supported: "0.10.0" } },
28+
},
29+
ArrayBuffer: {
30+
[READ]: { supported: "0.10.0" },
31+
isView: { [READ]: { supported: "4.0.0" } },
32+
},
33+
Atomics: {
34+
[READ]: { supported: "8.10.0" },
35+
add: { [READ]: { supported: "8.10.0" } },
36+
and: { [READ]: { supported: "8.10.0" } },
37+
compareExchange: { [READ]: { supported: "8.10.0" } },
38+
exchange: { [READ]: { supported: "8.10.0" } },
39+
isLockFree: { [READ]: { supported: "8.10.0" } },
40+
load: { [READ]: { supported: "8.10.0" } },
41+
notify: { [READ]: { supported: "8.10.0" } },
42+
or: { [READ]: { supported: "8.10.0" } },
43+
store: { [READ]: { supported: "8.10.0" } },
44+
sub: { [READ]: { supported: "8.10.0" } },
45+
wait: { [READ]: { supported: "8.10.0" } },
46+
waitAsync: { [READ]: { supported: "16.0.0" } },
47+
xor: { [READ]: { supported: "8.10.0" } },
2348
},
2449
BigInt: {
2550
[READ]: { supported: "10.4.0" },
51+
asIntN: { [READ]: { supported: "10.4.0" } },
52+
asUintN: { [READ]: { supported: "10.4.0" } },
53+
},
54+
BigInt64Array: {
55+
[READ]: { supported: "10.4.0" },
56+
BYTES_PER_ELEMENT: { [READ]: { supported: "0.10.0" } },
57+
from: { [READ]: { supported: "4.0.0" } },
58+
name: { [READ]: { supported: "0.10.0" } },
59+
of: { [READ]: { supported: "4.0.0" } },
60+
},
61+
BigUint64Array: {
62+
[READ]: { supported: "10.4.0" },
63+
BYTES_PER_ELEMENT: { [READ]: { supported: "0.10.0" } },
64+
from: { [READ]: { supported: "4.0.0" } },
65+
name: { [READ]: { supported: "0.10.0" } },
66+
of: { [READ]: { supported: "4.0.0" } },
67+
},
68+
Boolean: {
69+
[READ]: { supported: "0.10.0" },
70+
},
71+
DataView: {
72+
[READ]: { supported: "0.10.0" },
73+
},
74+
Date: {
75+
[READ]: { supported: "0.10.0" },
76+
UTC: { [READ]: { supported: "0.10.0" } },
77+
now: { [READ]: { supported: "0.10.0" } },
78+
parse: { [READ]: { supported: "0.10.0" } },
79+
toLocaleDateString: { [READ]: { supported: "0.10.0" } },
80+
toLocaleString: { [READ]: { supported: "0.10.0" } },
81+
toLocaleTimeString: { [READ]: { supported: "0.10.0" } },
82+
},
83+
Error: {
84+
[READ]: { supported: "0.10.0" },
85+
cause: { [READ]: { supported: "16.9.0" } },
86+
},
87+
EvalError: {
88+
[READ]: { supported: "0.10.0" },
2689
},
2790
FinalizationRegistry: {
2891
[READ]: { supported: "14.6.0" },
2992
},
93+
Float32Array: {
94+
[READ]: { supported: "0.10.0" },
95+
BYTES_PER_ELEMENT: { [READ]: { supported: "0.10.0" } },
96+
from: { [READ]: { supported: "4.0.0" } },
97+
name: { [READ]: { supported: "0.10.0" } },
98+
of: { [READ]: { supported: "4.0.0" } },
99+
},
100+
Float64Array: {
101+
[READ]: { supported: "0.10.0" },
102+
BYTES_PER_ELEMENT: { [READ]: { supported: "0.10.0" } },
103+
from: { [READ]: { supported: "4.0.0" } },
104+
name: { [READ]: { supported: "0.10.0" } },
105+
of: { [READ]: { supported: "4.0.0" } },
106+
},
107+
Function: {
108+
[READ]: { supported: "0.10.0" },
109+
length: { [READ]: { supported: "0.10.0" } },
110+
name: { [READ]: { supported: "0.10.0" } },
111+
},
112+
Infinity: {
113+
[READ]: { supported: "0.10.0" },
114+
},
115+
Int16Array: {
116+
[READ]: { supported: "0.10.0" },
117+
BYTES_PER_ELEMENT: { [READ]: { supported: "0.10.0" } },
118+
from: { [READ]: { supported: "4.0.0" } },
119+
name: { [READ]: { supported: "0.10.0" } },
120+
of: { [READ]: { supported: "4.0.0" } },
121+
},
122+
Int32Array: {
123+
[READ]: { supported: "0.10.0" },
124+
BYTES_PER_ELEMENT: { [READ]: { supported: "0.10.0" } },
125+
from: { [READ]: { supported: "4.0.0" } },
126+
name: { [READ]: { supported: "0.10.0" } },
127+
of: { [READ]: { supported: "4.0.0" } },
128+
},
129+
Int8Array: {
130+
[READ]: { supported: "0.10.0" },
131+
BYTES_PER_ELEMENT: { [READ]: { supported: "0.10.0" } },
132+
from: { [READ]: { supported: "4.0.0" } },
133+
name: { [READ]: { supported: "0.10.0" } },
134+
of: { [READ]: { supported: "4.0.0" } },
135+
},
136+
Intl: {
137+
[READ]: { supported: "0.12.0" },
138+
Collator: { [READ]: { supported: "0.12.0" } },
139+
DateTimeFormat: { [READ]: { supported: "0.12.0" } },
140+
DisplayNames: { [READ]: { supported: "14.0.0" } },
141+
ListFormat: { [READ]: { supported: "12.0.0" } },
142+
Locale: { [READ]: { supported: "12.0.0" } },
143+
NumberFormat: { [READ]: { supported: "0.12.0" } },
144+
PluralRules: { [READ]: { supported: "10.0.0" } },
145+
RelativeTimeFormat: { [READ]: { supported: "12.0.0" } },
146+
Segmenter: { [READ]: { supported: "16.0.0" } },
147+
Segments: { [READ]: { supported: "16.0.0" } },
148+
getCanonicalLocales: { [READ]: { supported: "7.0.0" } },
149+
supportedValuesOf: { [READ]: { supported: "18.0.0" } },
150+
},
151+
JSON: {
152+
[READ]: { supported: "0.10.0" },
153+
parse: { [READ]: { supported: "0.10.0" } },
154+
stringify: { [READ]: { supported: "0.10.0" } },
155+
},
30156
Map: {
31157
[READ]: { supported: "0.12.0" },
158+
groupBy: { [READ]: { supported: "21.0.0" } },
32159
},
33160
Math: {
161+
[READ]: { supported: "0.10.0" },
162+
E: { [READ]: { supported: "0.10.0" } },
163+
LN10: { [READ]: { supported: "0.10.0" } },
164+
LN2: { [READ]: { supported: "0.10.0" } },
165+
LOG10E: { [READ]: { supported: "0.10.0" } },
166+
LOG2E: { [READ]: { supported: "0.10.0" } },
167+
PI: { [READ]: { supported: "0.10.0" } },
168+
SQRT1_2: { [READ]: { supported: "0.10.0" } },
169+
SQRT2: { [READ]: { supported: "0.10.0" } },
170+
abs: { [READ]: { supported: "0.10.0" } },
171+
acos: { [READ]: { supported: "0.10.0" } },
34172
acosh: { [READ]: { supported: "0.12.0" } },
173+
asin: { [READ]: { supported: "0.10.0" } },
35174
asinh: { [READ]: { supported: "0.12.0" } },
175+
atan: { [READ]: { supported: "0.10.0" } },
176+
atan2: { [READ]: { supported: "0.10.0" } },
36177
atanh: { [READ]: { supported: "0.12.0" } },
37178
cbrt: { [READ]: { supported: "0.12.0" } },
179+
ceil: { [READ]: { supported: "0.10.0" } },
38180
clz32: { [READ]: { supported: "0.12.0" } },
181+
cos: { [READ]: { supported: "0.10.0" } },
39182
cosh: { [READ]: { supported: "0.12.0" } },
183+
exp: { [READ]: { supported: "0.10.0" } },
40184
expm1: { [READ]: { supported: "0.12.0" } },
185+
floor: { [READ]: { supported: "0.10.0" } },
41186
fround: { [READ]: { supported: "0.12.0" } },
42187
hypot: { [READ]: { supported: "0.12.0" } },
43188
imul: { [READ]: { supported: "0.12.0" } },
189+
log: { [READ]: { supported: "0.10.0" } },
44190
log10: { [READ]: { supported: "0.12.0" } },
45191
log1p: { [READ]: { supported: "0.12.0" } },
46192
log2: { [READ]: { supported: "0.12.0" } },
193+
max: { [READ]: { supported: "0.10.0" } },
194+
min: { [READ]: { supported: "0.10.0" } },
195+
pow: { [READ]: { supported: "0.10.0" } },
196+
random: { [READ]: { supported: "0.10.0" } },
197+
round: { [READ]: { supported: "0.10.0" } },
47198
sign: { [READ]: { supported: "0.12.0" } },
199+
sin: { [READ]: { supported: "0.10.0" } },
48200
sinh: { [READ]: { supported: "0.12.0" } },
201+
sqrt: { [READ]: { supported: "0.10.0" } },
202+
tan: { [READ]: { supported: "0.10.0" } },
49203
tanh: { [READ]: { supported: "0.12.0" } },
50204
trunc: { [READ]: { supported: "0.12.0" } },
51205
},
206+
NaN: {
207+
[READ]: { supported: "0.10.0" },
208+
},
52209
Number: {
210+
// [READ]: { supported: "0.10.0" },
53211
EPSILON: { [READ]: { supported: "0.12.0" } },
212+
MAX_SAFE_INTEGER: { [READ]: { supported: "0.12.0" } },
213+
MAX_VALUE: { [READ]: { supported: "0.10.0" } },
214+
MIN_SAFE_INTEGER: { [READ]: { supported: "0.12.0" } },
215+
MIN_VALUE: { [READ]: { supported: "0.10.0" } },
216+
NEGATIVE_INFINITY: { [READ]: { supported: "0.10.0" } },
217+
NaN: { [READ]: { supported: "0.10.0" } },
218+
POSITIVE_INFINITY: { [READ]: { supported: "0.10.0" } },
54219
isFinite: { [READ]: { supported: "0.10.0" } },
55220
isInteger: { [READ]: { supported: "0.12.0" } },
56221
isNaN: { [READ]: { supported: "0.10.0" } },
57222
isSafeInteger: { [READ]: { supported: "0.12.0" } },
58-
MAX_SAFE_INTEGER: { [READ]: { supported: "0.12.0" } },
59-
MIN_SAFE_INTEGER: { [READ]: { supported: "0.12.0" } },
60223
parseFloat: { [READ]: { supported: "0.12.0" } },
61224
parseInt: { [READ]: { supported: "0.12.0" } },
225+
toLocaleString: { [READ]: { supported: "0.10.0" } },
62226
},
63227
Object: {
228+
// [READ]: { supported: "0.10.0" },
64229
assign: { [READ]: { supported: "4.0.0" } },
230+
create: { [READ]: { supported: "0.10.0" } },
231+
defineGetter: { [READ]: { supported: "0.10.0" } },
232+
defineProperties: { [READ]: { supported: "0.10.0" } },
233+
defineProperty: { [READ]: { supported: "0.10.0" } },
234+
defineSetter: { [READ]: { supported: "0.10.0" } },
235+
entries: { [READ]: { supported: "7.0.0" } },
236+
freeze: { [READ]: { supported: "0.10.0" } },
65237
fromEntries: { [READ]: { supported: "12.0.0" } },
238+
getOwnPropertyDescriptor: { [READ]: { supported: "0.10.0" } },
239+
getOwnPropertyDescriptors: { [READ]: { supported: "7.0.0" } },
240+
getOwnPropertyNames: { [READ]: { supported: "0.10.0" } },
66241
getOwnPropertySymbols: { [READ]: { supported: "0.12.0" } },
242+
getPrototypeOf: { [READ]: { supported: "0.10.0" } },
243+
groupBy: { [READ]: { supported: "21.0.0" } },
244+
hasOwn: { [READ]: { supported: "16.9.0" } },
67245
is: { [READ]: { supported: "0.10.0" } },
246+
isExtensible: { [READ]: { supported: "0.10.0" } },
247+
isFrozen: { [READ]: { supported: "0.10.0" } },
248+
isSealed: { [READ]: { supported: "0.10.0" } },
249+
keys: { [READ]: { supported: "0.10.0" } },
250+
lookupGetter: { [READ]: { supported: "0.10.0" } },
251+
lookupSetter: { [READ]: { supported: "0.10.0" } },
252+
preventExtensions: { [READ]: { supported: "0.10.0" } },
253+
proto: { [READ]: { supported: "0.10.0" } },
254+
seal: { [READ]: { supported: "0.10.0" } },
68255
setPrototypeOf: { [READ]: { supported: "0.12.0" } },
69256
values: { [READ]: { supported: "7.0.0" } },
70-
entries: { [READ]: { supported: "7.0.0" } },
71-
getOwnPropertyDescriptors: { [READ]: { supported: "7.0.0" } },
72257
},
73258
Promise: {
74259
[READ]: { supported: "0.12.0" },
260+
all: { [READ]: { supported: "0.12.0" } },
75261
allSettled: { [READ]: { supported: "12.9.0" } },
76262
any: { [READ]: { supported: "15.0.0" } },
263+
race: { [READ]: { supported: "0.12.0" } },
264+
reject: { [READ]: { supported: "0.12.0" } },
265+
resolve: { [READ]: { supported: "0.12.0" } },
77266
},
78267
Proxy: {
79268
[READ]: { supported: "6.0.0" },
269+
revocable: { [READ]: { supported: "6.0.0" } },
270+
},
271+
RangeError: {
272+
[READ]: { supported: "0.10.0" },
273+
},
274+
ReferenceError: {
275+
[READ]: { supported: "0.10.0" },
80276
},
81277
Reflect: {
82278
[READ]: { supported: "6.0.0" },
279+
apply: { [READ]: { supported: "6.0.0" } },
280+
construct: { [READ]: { supported: "6.0.0" } },
281+
defineProperty: { [READ]: { supported: "6.0.0" } },
282+
deleteProperty: { [READ]: { supported: "6.0.0" } },
283+
get: { [READ]: { supported: "6.0.0" } },
284+
getOwnPropertyDescriptor: { [READ]: { supported: "6.0.0" } },
285+
getPrototypeOf: { [READ]: { supported: "6.0.0" } },
286+
has: { [READ]: { supported: "6.0.0" } },
287+
isExtensible: { [READ]: { supported: "6.0.0" } },
288+
ownKeys: { [READ]: { supported: "6.0.0" } },
289+
preventExtensions: { [READ]: { supported: "6.0.0" } },
290+
set: { [READ]: { supported: "6.0.0" } },
291+
setPrototypeOf: { [READ]: { supported: "6.0.0" } },
292+
},
293+
RegExp: {
294+
[READ]: { supported: "0.10.0" },
295+
dotAll: { [READ]: { supported: "8.10.0" } },
296+
hasIndices: { [READ]: { supported: "16.0.0" } },
297+
input: { [READ]: { supported: "0.10.0" } },
298+
lastIndex: { [READ]: { supported: "0.10.0" } },
299+
lastMatch: { [READ]: { supported: "0.10.0" } },
300+
lastParen: { [READ]: { supported: "0.10.0" } },
301+
leftContext: { [READ]: { supported: "0.10.0" } },
302+
n: { [READ]: { supported: "0.10.0" } },
303+
rightContext: { [READ]: { supported: "0.10.0" } },
83304
},
84305
Set: {
85306
[READ]: { supported: "0.12.0" },
86307
},
308+
SharedArrayBuffer: {
309+
[READ]: { supported: "8.10.0" },
310+
},
87311
String: {
312+
[READ]: { supported: "0.10.0" },
313+
fromCharCode: { [READ]: { supported: "0.10.0" } },
88314
fromCodePoint: { [READ]: { supported: "4.0.0" } },
315+
length: { [READ]: { supported: "0.10.0" } },
316+
localeCompare: { [READ]: { supported: "0.10.0" } },
89317
raw: { [READ]: { supported: "4.0.0" } },
318+
toLocaleLowerCase: { [READ]: { supported: "0.10.0" } },
319+
toLocaleUpperCase: { [READ]: { supported: "0.10.0" } },
90320
},
91321
Symbol: {
92322
[READ]: { supported: "0.12.0" },
323+
asyncIterator: { [READ]: { supported: "10.0.0" } },
324+
for: { [READ]: { supported: "0.12.0" } },
325+
hasInstance: { [READ]: { supported: "6.5.0" } },
326+
isConcatSpreadable: { [READ]: { supported: "6.0.0" } },
327+
iterator: { [READ]: { supported: "0.12.0" } },
328+
keyFor: { [READ]: { supported: "0.12.0" } },
329+
match: { [READ]: { supported: "6.0.0" } },
330+
matchAll: { [READ]: { supported: "12.0.0" } },
331+
replace: { [READ]: { supported: "6.0.0" } },
332+
search: { [READ]: { supported: "6.0.0" } },
333+
species: { [READ]: { supported: "6.5.0" } },
334+
split: { [READ]: { supported: "6.0.0" } },
335+
toPrimitive: { [READ]: { supported: "6.0.0" } },
336+
toStringTag: { [READ]: { supported: "6.0.0" } },
337+
unscopables: { [READ]: { supported: "0.12.0" } },
338+
},
339+
SyntaxError: {
340+
[READ]: { supported: "0.10.0" },
93341
},
94-
Int8Array: {
342+
TypeError: {
343+
[READ]: { supported: "0.10.0" },
344+
},
345+
URIError: {
346+
[READ]: { supported: "0.10.0" },
347+
},
348+
Uint16Array: {
349+
[READ]: { supported: "0.10.0" },
350+
BYTES_PER_ELEMENT: { [READ]: { supported: "0.10.0" } },
351+
from: { [READ]: { supported: "4.0.0" } },
352+
name: { [READ]: { supported: "0.10.0" } },
353+
of: { [READ]: { supported: "4.0.0" } },
354+
},
355+
Uint32Array: {
95356
[READ]: { supported: "0.10.0" },
357+
BYTES_PER_ELEMENT: { [READ]: { supported: "0.10.0" } },
358+
from: { [READ]: { supported: "4.0.0" } },
359+
name: { [READ]: { supported: "0.10.0" } },
360+
of: { [READ]: { supported: "4.0.0" } },
96361
},
97362
Uint8Array: {
98363
[READ]: { supported: "0.10.0" },
364+
BYTES_PER_ELEMENT: { [READ]: { supported: "0.10.0" } },
365+
from: { [READ]: { supported: "4.0.0" } },
366+
name: { [READ]: { supported: "0.10.0" } },
367+
of: { [READ]: { supported: "4.0.0" } },
99368
},
100369
Uint8ClampedArray: {
101370
[READ]: { supported: "0.10.0" },
371+
BYTES_PER_ELEMENT: { [READ]: { supported: "0.10.0" } },
372+
from: { [READ]: { supported: "4.0.0" } },
373+
name: { [READ]: { supported: "0.10.0" } },
374+
of: { [READ]: { supported: "4.0.0" } },
102375
},
103-
Int16Array: {
376+
WeakMap: {
377+
[READ]: { supported: "0.12.0" },
378+
},
379+
WeakRef: {
380+
[READ]: { supported: "14.6.0" },
381+
},
382+
WeakSet: {
383+
[READ]: { supported: "0.12.0" },
384+
},
385+
decodeURI: {
104386
[READ]: { supported: "0.10.0" },
105387
},
106-
Uint16Array: {
388+
decodeURIComponent: {
107389
[READ]: { supported: "0.10.0" },
108390
},
109-
Int32Array: {
391+
encodeURI: {
110392
[READ]: { supported: "0.10.0" },
111393
},
112-
Uint32Array: {
394+
encodeURIComponent: {
113395
[READ]: { supported: "0.10.0" },
114396
},
115-
BigInt64Array: {
116-
[READ]: { supported: "10.4.0" },
397+
escape: {
398+
[READ]: { supported: "0.10.0" },
117399
},
118-
BigUint64Array: {
119-
[READ]: { supported: "10.4.0" },
400+
eval: {
401+
[READ]: { supported: "0.10.0" },
120402
},
121-
Float32Array: {
403+
globalThis: {
404+
[READ]: { supported: "12.0.0" },
405+
},
406+
isFinite: {
122407
[READ]: { supported: "0.10.0" },
123408
},
124-
Float64Array: {
409+
isNaN: {
125410
[READ]: { supported: "0.10.0" },
126411
},
127-
DataView: {
412+
parseFloat: {
128413
[READ]: { supported: "0.10.0" },
129414
},
130-
WeakMap: {
131-
[READ]: { supported: "0.12.0" },
415+
parseInt: {
416+
[READ]: { supported: "0.10.0" },
132417
},
133-
WeakRef: {
134-
[READ]: { supported: "14.6.0" },
418+
unescape: {
419+
[READ]: { supported: "0.10.0" },
135420
},
136-
WeakSet: {
137-
[READ]: { supported: "0.12.0" },
421+
422+
// General APIs
423+
AbortController: {
424+
[READ]: { supported: "15.0.0" },
138425
},
139-
Atomics: {
140-
[READ]: { supported: "8.10.0" },
426+
AbortSignal: {
427+
[READ]: { supported: "15.0.0" },
428+
abort: { [READ]: { supported: "15.12.0" } },
429+
any: { [READ]: { supported: "20.3.0" } },
430+
timeout: { [READ]: { supported: "17.3.0" } },
141431
},
142-
SharedArrayBuffer: {
143-
[READ]: { supported: "8.10.0" },
432+
Blob: {
433+
[READ]: { supported: "18.0.0" },
144434
},
145-
globalThis: {
146-
[READ]: { supported: "12.0.0" },
435+
BroadcastChannel: {
436+
[READ]: { supported: "15.4.0" },
437+
},
438+
ByteLengthQueuingStrategy: {
439+
[READ]: { supported: "18.0.0" },
440+
},
441+
CompressionStream: {
442+
[READ]: { supported: "18.0.0" },
443+
},
444+
CountQueuingStrategy: {
445+
[READ]: { supported: "18.0.0" },
446+
},
447+
Crypto: {
448+
[READ]: { supported: "19.0.0" },
449+
},
450+
CryptoKey: {
451+
[READ]: { supported: "15.0.0" },
452+
},
453+
CustomEvent: {
454+
[READ]: { supported: "19.0.0" },
455+
},
456+
DOMException: {
457+
[READ]: { supported: "17.0.0" },
458+
},
459+
DecompressionStream: {
460+
[READ]: { supported: "18.0.0" },
461+
},
462+
Event: {
463+
[READ]: { supported: "14.5.0" },
464+
},
465+
EventTarget: {
466+
[READ]: { supported: "14.5.0" },
467+
},
468+
FormData: {
469+
[READ]: { supported: "18.0.0" },
470+
},
471+
Headers: {
472+
[READ]: { supported: "18.0.0" },
473+
},
474+
MessageChannel: {
475+
[READ]: { supported: "15.0.0" },
476+
},
477+
MessageEvent: {
478+
[READ]: { supported: "15.0.0" },
479+
},
480+
MessagePort: {
481+
[READ]: { supported: "14.7.0" },
482+
},
483+
Performance: {
484+
[READ]: { supported: "8.5.0" },
485+
},
486+
PerformanceEntry: {
487+
[READ]: { supported: "8.5.0" },
488+
},
489+
PerformanceMark: {
490+
[READ]: { supported: "8.5.0" },
491+
},
492+
PerformanceMeasure: {
493+
[READ]: { supported: "8.5.0" },
494+
},
495+
PerformanceObserver: {
496+
[READ]: { supported: "8.5.0" },
497+
supportedEntryTypes: { [READ]: { supported: "8.5.0" } },
498+
},
499+
PerformanceObserverEntryList: {
500+
[READ]: { supported: "8.5.0" },
501+
},
502+
ReadableByteStreamController: {
503+
[READ]: { supported: "18.0.0" },
504+
},
505+
ReadableStream: {
506+
[READ]: { supported: "18.0.0" },
507+
from: { [READ]: { supported: "20.6.0" } },
508+
},
509+
ReadableStreamBYOBReader: {
510+
[READ]: { supported: "18.0.0" },
511+
},
512+
ReadableStreamBYOBRequest: {
513+
[READ]: { supported: "18.0.0" },
514+
},
515+
ReadableStreamDefaultController: {
516+
[READ]: { supported: "18.0.0" },
517+
},
518+
ReadableStreamDefaultReader: {
519+
[READ]: { supported: "18.0.0" },
520+
},
521+
Request: {
522+
[READ]: { supported: "18.0.0" },
523+
},
524+
Response: {
525+
[READ]: { supported: "18.0.0" },
526+
},
527+
SubtleCrypto: {
528+
[READ]: { supported: "15.0.0" },
529+
},
530+
TextDecoder: {
531+
[READ]: { supported: "11.0.0" },
532+
},
533+
TextDecoderStream: {
534+
[READ]: { supported: "18.0.0" },
535+
},
536+
TextEncoder: {
537+
[READ]: { supported: "11.0.0" },
538+
},
539+
TextEncoderStream: {
540+
[READ]: { supported: "18.0.0" },
541+
},
542+
TransformStream: {
543+
[READ]: { supported: "18.0.0" },
544+
},
545+
TransformStreamDefaultController: {
546+
[READ]: { supported: "16.5.0" },
547+
},
548+
URL: {
549+
[READ]: { supported: "10.0.0" },
550+
canParse: { [READ]: { supported: "19.9.0" } },
551+
createObjectURL: { [READ]: { supported: "16.7.0" } },
552+
revokeObjectURL: { [READ]: { supported: "16.7.0" } },
553+
},
554+
URLSearchParams: {
555+
[READ]: { supported: "10.0.0" },
556+
},
557+
Worker: {
558+
[READ]: { supported: "12.17.0" },
559+
},
560+
WritableStream: {
561+
[READ]: { supported: "18.0.0" },
562+
},
563+
WritableStreamDefaultController: {
564+
[READ]: { supported: "18.0.0" },
565+
},
566+
WritableStreamDefaultWriter: {
567+
[READ]: { supported: "18.0.0" },
568+
},
569+
atob: {
570+
[READ]: { supported: "16.0.0" },
571+
},
572+
btoa: {
573+
[READ]: { supported: "16.0.0" },
574+
},
575+
clearInterval: {
576+
[READ]: { supported: "0.10.0" },
577+
},
578+
clearTimeout: {
579+
[READ]: { supported: "0.10.0" },
580+
},
581+
console: {
582+
[READ]: { supported: "0.10.0" },
583+
assert: { [READ]: { supported: "10.0.0" } },
584+
clear: { [READ]: { supported: "8.3.0" } },
585+
countReset: { [READ]: { supported: "8.3.0" } },
586+
count: { [READ]: { supported: "8.3.0" } },
587+
debug: { [READ]: { supported: "8.0.0" } },
588+
dir: { [READ]: { supported: "0.10.0" } },
589+
dirxml: { [READ]: { supported: "9.3.0" } },
590+
error: { [READ]: { supported: "0.10.0" } },
591+
groupCollapsed: { [READ]: { supported: "8.5.0" } },
592+
groupEnd: { [READ]: { supported: "8.5.0" } },
593+
group: { [READ]: { supported: "8.5.0" } },
594+
info: { [READ]: { supported: "0.10.0" } },
595+
log: { [READ]: { supported: "0.10.0" } },
596+
table: { [READ]: { supported: "10.0.0" } },
597+
timeEnd: { [READ]: { supported: "0.10.0" } },
598+
timeLog: { [READ]: { supported: "10.7.0" } },
599+
time: { [READ]: { supported: "0.10.0" } },
600+
trace: { [READ]: { supported: "0.10.0" } },
601+
warn: { [READ]: { supported: "0.10.0" } },
602+
},
603+
fetch: {
604+
[READ]: { supported: "18.0.0" },
605+
},
606+
queueMicrotask: {
607+
[READ]: { supported: "11.0.0" },
608+
},
609+
setInterval: {
610+
[READ]: { supported: "0.10.0" },
611+
},
612+
setTimeout: {
613+
[READ]: { supported: "0.10.0" },
614+
},
615+
structuredClone: {
616+
[READ]: { supported: "17.0.0" },
147617
},
148618
},
149619
}

0 commit comments

Comments
 (0)
Please sign in to comment.