@tramvai/cli 5.46.1 → 5.47.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/library/babel/index.d.ts +1 -1
- package/lib/library/babel/index.d.ts.map +1 -1
- package/lib/library/babel/index.js +5 -23
- package/lib/library/babel/index.js.map +1 -1
- package/lib/library/swc/index.d.ts.map +1 -1
- package/lib/library/swc/index.js +6 -20
- package/lib/library/swc/index.js.map +1 -1
- package/lib/library/webpack/application/client/common.d.ts.map +1 -1
- package/lib/library/webpack/application/client/common.js +6 -1
- package/lib/library/webpack/application/client/common.js.map +1 -1
- package/lib/library/webpack/plugins/PolyfillCondition.d.ts +8 -0
- package/lib/library/webpack/plugins/PolyfillCondition.d.ts.map +1 -0
- package/lib/library/webpack/plugins/PolyfillCondition.js +46 -0
- package/lib/library/webpack/plugins/PolyfillCondition.js.map +1 -0
- package/lib/library/webpack/utils/polyfills/const.d.ts +3 -0
- package/lib/library/webpack/utils/polyfills/const.d.ts.map +1 -0
- package/lib/library/webpack/utils/polyfills/const.js +49 -0
- package/lib/library/webpack/utils/polyfills/const.js.map +1 -0
- package/lib/library/webpack/utils/polyfills/polyfillCondition.d.ts +8 -0
- package/lib/library/webpack/utils/polyfills/polyfillCondition.d.ts.map +1 -0
- package/lib/library/webpack/utils/polyfills/polyfillCondition.js +51 -0
- package/lib/library/webpack/utils/polyfills/polyfillCondition.js.map +1 -0
- package/lib/library/webpack/utils/polyfills/specToFeature.d.ts +7 -0
- package/lib/library/webpack/utils/polyfills/specToFeature.d.ts.map +1 -0
- package/lib/library/webpack/utils/polyfills/specToFeature.js +207 -0
- package/lib/library/webpack/utils/polyfills/specToFeature.js.map +1 -0
- package/lib/library/webpack/utils/transpiler.d.ts +2 -0
- package/lib/library/webpack/utils/transpiler.d.ts.map +1 -1
- package/lib/library/webpack/utils/transpiler.js +25 -3
- package/lib/library/webpack/utils/transpiler.js.map +1 -1
- package/lib/schema/autogeneratedSchema.json +3 -6
- package/lib/typings/configEntry/cli.d.ts +1 -2
- package/lib/typings/configEntry/cli.d.ts.map +1 -1
- package/package.json +5 -3
- package/schema.json +3 -6
- package/src/library/babel/index.ts +5 -28
- package/src/library/babel/plugins/lazy-component/lazy-component.spec.ts +2 -1
- package/src/library/babel/plugins/lazy-component/legacy-universal-replace.spec.ts +2 -1
- package/src/library/swc/index.ts +7 -26
- package/src/library/webpack/application/client/common.ts +7 -1
- package/src/library/webpack/plugins/PolyfillCondition.ts +62 -0
- package/src/library/webpack/utils/polyfills/__integration__/__snapshots__/condition.test.ts.snap +1348 -0
- package/src/library/webpack/utils/polyfills/__integration__/condition.test.ts +128 -0
- package/src/library/webpack/utils/polyfills/const.ts +46 -0
- package/src/library/webpack/utils/polyfills/polyfillCondition.ts +63 -0
- package/src/library/webpack/utils/polyfills/specToFeature.ts +243 -0
- package/src/library/webpack/utils/transpiler.ts +32 -2
- package/src/schema/autogeneratedSchema.json +3 -6
- package/src/typings/configEntry/cli.ts +1 -2
package/src/library/webpack/utils/polyfills/__integration__/__snapshots__/condition.test.ts.snap
ADDED
|
@@ -0,0 +1,1348 @@
|
|
|
1
|
+
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
|
+
|
|
3
|
+
exports[`polyfills polyfill condition should generate max browser versions dict: browserVersions 1`] = `
|
|
4
|
+
{
|
|
5
|
+
"chrome": {
|
|
6
|
+
"spec": "es.object.has-own",
|
|
7
|
+
"version": "93",
|
|
8
|
+
},
|
|
9
|
+
"chrome-android": {
|
|
10
|
+
"spec": "es.object.has-own",
|
|
11
|
+
"version": "93",
|
|
12
|
+
},
|
|
13
|
+
"edge": {
|
|
14
|
+
"spec": "es.object.has-own",
|
|
15
|
+
"version": "93",
|
|
16
|
+
},
|
|
17
|
+
"firefox": {
|
|
18
|
+
"spec": "es.array.includes",
|
|
19
|
+
"version": "102",
|
|
20
|
+
},
|
|
21
|
+
"ios": {
|
|
22
|
+
"spec": "es.array.at",
|
|
23
|
+
"version": "15.4",
|
|
24
|
+
},
|
|
25
|
+
"opera": {
|
|
26
|
+
"spec": "es.object.has-own",
|
|
27
|
+
"version": "79",
|
|
28
|
+
},
|
|
29
|
+
"opera_mobile": {
|
|
30
|
+
"spec": "es.object.has-own",
|
|
31
|
+
"version": "66",
|
|
32
|
+
},
|
|
33
|
+
"safari": {
|
|
34
|
+
"spec": "es.array.at",
|
|
35
|
+
"version": "15.4",
|
|
36
|
+
},
|
|
37
|
+
"samsung": {
|
|
38
|
+
"spec": "es.object.has-own",
|
|
39
|
+
"version": "17.0",
|
|
40
|
+
},
|
|
41
|
+
}
|
|
42
|
+
`;
|
|
43
|
+
|
|
44
|
+
exports[`polyfills polyfill condition should generate valid polyfill condition: polyfillCondition 1`] = `"!(Object.hasOwn) || !('at' in window.Array.prototype) || !('includes' in window.Array.prototype)"`;
|
|
45
|
+
|
|
46
|
+
exports[`polyfills spec to feature generator all feature expresssion should be valid: expressionsResult 1`] = `
|
|
47
|
+
{
|
|
48
|
+
"es.aggregate-error": true,
|
|
49
|
+
"es.array": true,
|
|
50
|
+
"es.array-buffer": true,
|
|
51
|
+
"es.array-buffer.constructor": true,
|
|
52
|
+
"es.array-buffer.detached": true,
|
|
53
|
+
"es.array-buffer.is-view": true,
|
|
54
|
+
"es.array-buffer.slice": true,
|
|
55
|
+
"es.array-buffer.transfer": true,
|
|
56
|
+
"es.array-buffer.transfer-to-fixed-length": true,
|
|
57
|
+
"es.array.at": true,
|
|
58
|
+
"es.array.concat": true,
|
|
59
|
+
"es.array.copy-within": true,
|
|
60
|
+
"es.array.every": true,
|
|
61
|
+
"es.array.fill": true,
|
|
62
|
+
"es.array.filter": true,
|
|
63
|
+
"es.array.find": true,
|
|
64
|
+
"es.array.find-index": true,
|
|
65
|
+
"es.array.find-last": true,
|
|
66
|
+
"es.array.find-last-index": true,
|
|
67
|
+
"es.array.flat": true,
|
|
68
|
+
"es.array.flat-map": true,
|
|
69
|
+
"es.array.for-each": true,
|
|
70
|
+
"es.array.from": true,
|
|
71
|
+
"es.array.includes": true,
|
|
72
|
+
"es.array.index-of": true,
|
|
73
|
+
"es.array.is-array": true,
|
|
74
|
+
"es.array.join": true,
|
|
75
|
+
"es.array.last-index-of": true,
|
|
76
|
+
"es.array.map": true,
|
|
77
|
+
"es.array.of": true,
|
|
78
|
+
"es.array.reduce": true,
|
|
79
|
+
"es.array.reduce-right": true,
|
|
80
|
+
"es.array.reverse": true,
|
|
81
|
+
"es.array.slice": true,
|
|
82
|
+
"es.array.some": true,
|
|
83
|
+
"es.array.sort": true,
|
|
84
|
+
"es.array.splice": true,
|
|
85
|
+
"es.array.to-reversed": true,
|
|
86
|
+
"es.array.to-sorted": true,
|
|
87
|
+
"es.array.to-spliced": true,
|
|
88
|
+
"es.array.unshift": true,
|
|
89
|
+
"es.array.with": true,
|
|
90
|
+
"es.async-disposable-stack": false,
|
|
91
|
+
"es.data-view": true,
|
|
92
|
+
"es.date": true,
|
|
93
|
+
"es.date.get-year": true,
|
|
94
|
+
"es.date.now": true,
|
|
95
|
+
"es.date.set-year": true,
|
|
96
|
+
"es.date.to-gmt-string": true,
|
|
97
|
+
"es.date.to-iso-string": true,
|
|
98
|
+
"es.date.to-json": true,
|
|
99
|
+
"es.date.to-string": true,
|
|
100
|
+
"es.disposable-stack": false,
|
|
101
|
+
"es.error.cause": true,
|
|
102
|
+
"es.escape": true,
|
|
103
|
+
"es.function": true,
|
|
104
|
+
"es.function.bind": true,
|
|
105
|
+
"es.function.name": true,
|
|
106
|
+
"es.global-this": true,
|
|
107
|
+
"es.iterator": true,
|
|
108
|
+
"es.json": true,
|
|
109
|
+
"es.json.stringify": true,
|
|
110
|
+
"es.map": true,
|
|
111
|
+
"es.map.group-by": true,
|
|
112
|
+
"es.math": true,
|
|
113
|
+
"es.math.acosh": true,
|
|
114
|
+
"es.math.asinh": true,
|
|
115
|
+
"es.math.atanh": true,
|
|
116
|
+
"es.math.cbrt": true,
|
|
117
|
+
"es.math.clz32": true,
|
|
118
|
+
"es.math.cosh": true,
|
|
119
|
+
"es.math.expm1": true,
|
|
120
|
+
"es.math.fround": true,
|
|
121
|
+
"es.math.hypot": true,
|
|
122
|
+
"es.math.imul": true,
|
|
123
|
+
"es.math.log10": true,
|
|
124
|
+
"es.math.log1p": true,
|
|
125
|
+
"es.math.log2": true,
|
|
126
|
+
"es.math.sign": true,
|
|
127
|
+
"es.math.sinh": true,
|
|
128
|
+
"es.math.tanh": true,
|
|
129
|
+
"es.math.trunc": true,
|
|
130
|
+
"es.number": true,
|
|
131
|
+
"es.number.constructor": true,
|
|
132
|
+
"es.number.epsilon": true,
|
|
133
|
+
"es.number.is-finite": true,
|
|
134
|
+
"es.number.is-integer": true,
|
|
135
|
+
"es.number.is-nan": true,
|
|
136
|
+
"es.number.is-safe-integer": true,
|
|
137
|
+
"es.number.max-safe-integer": true,
|
|
138
|
+
"es.number.min-safe-integer": true,
|
|
139
|
+
"es.number.parse-float": true,
|
|
140
|
+
"es.number.parse-int": true,
|
|
141
|
+
"es.number.to-exponential": true,
|
|
142
|
+
"es.number.to-fixed": true,
|
|
143
|
+
"es.number.to-precision": true,
|
|
144
|
+
"es.object": true,
|
|
145
|
+
"es.object.assign": true,
|
|
146
|
+
"es.object.create": true,
|
|
147
|
+
"es.object.define-getter": true,
|
|
148
|
+
"es.object.define-properties": true,
|
|
149
|
+
"es.object.define-property": true,
|
|
150
|
+
"es.object.define-setter": true,
|
|
151
|
+
"es.object.entries": true,
|
|
152
|
+
"es.object.freeze": true,
|
|
153
|
+
"es.object.from-entries": true,
|
|
154
|
+
"es.object.get-own-property-descriptor": true,
|
|
155
|
+
"es.object.get-own-property-descriptors": true,
|
|
156
|
+
"es.object.get-own-property-names": true,
|
|
157
|
+
"es.object.get-prototype-of": true,
|
|
158
|
+
"es.object.group-by": true,
|
|
159
|
+
"es.object.has-own": true,
|
|
160
|
+
"es.object.is": true,
|
|
161
|
+
"es.object.is-extensible": true,
|
|
162
|
+
"es.object.is-frozen": true,
|
|
163
|
+
"es.object.is-sealed": true,
|
|
164
|
+
"es.object.keys": true,
|
|
165
|
+
"es.object.lookup-getter": true,
|
|
166
|
+
"es.object.lookup-setter": true,
|
|
167
|
+
"es.object.prevent-extensions": true,
|
|
168
|
+
"es.object.proto": true,
|
|
169
|
+
"es.object.seal": true,
|
|
170
|
+
"es.object.set-prototype-of": true,
|
|
171
|
+
"es.object.values": true,
|
|
172
|
+
"es.observable": false,
|
|
173
|
+
"es.parse-float": true,
|
|
174
|
+
"es.parse-int": true,
|
|
175
|
+
"es.promise": true,
|
|
176
|
+
"es.promise.all-settled": true,
|
|
177
|
+
"es.promise.any": true,
|
|
178
|
+
"es.promise.finally": true,
|
|
179
|
+
"es.promise.try": true,
|
|
180
|
+
"es.promise.with-resolvers": true,
|
|
181
|
+
"es.reflect-tag": true,
|
|
182
|
+
"es.reflect.apply": true,
|
|
183
|
+
"es.reflect.construct": true,
|
|
184
|
+
"es.reflect.define-property": true,
|
|
185
|
+
"es.reflect.delete-property": true,
|
|
186
|
+
"es.reflect.get": true,
|
|
187
|
+
"es.reflect.get-own-property-descriptor": true,
|
|
188
|
+
"es.reflect.get-prototype-of": true,
|
|
189
|
+
"es.reflect.has": true,
|
|
190
|
+
"es.reflect.is-extensible": true,
|
|
191
|
+
"es.reflect.own-keys": true,
|
|
192
|
+
"es.reflect.prevent-extensions": true,
|
|
193
|
+
"es.reflect.set": true,
|
|
194
|
+
"es.reflect.set-prototype-of": true,
|
|
195
|
+
"es.regexp": true,
|
|
196
|
+
"es.regexp.constructor": true,
|
|
197
|
+
"es.regexp.dot-all": true,
|
|
198
|
+
"es.regexp.exec": true,
|
|
199
|
+
"es.regexp.flags": true,
|
|
200
|
+
"es.regexp.sticky": true,
|
|
201
|
+
"es.regexp.test": true,
|
|
202
|
+
"es.regexp.to-string": true,
|
|
203
|
+
"es.set": true,
|
|
204
|
+
"es.string": true,
|
|
205
|
+
"es.string.anchor": true,
|
|
206
|
+
"es.string.big": true,
|
|
207
|
+
"es.string.blink": true,
|
|
208
|
+
"es.string.bold": true,
|
|
209
|
+
"es.string.code-point-at": true,
|
|
210
|
+
"es.string.ends-with": true,
|
|
211
|
+
"es.string.fixed": true,
|
|
212
|
+
"es.string.fontcolor": true,
|
|
213
|
+
"es.string.fontsize": true,
|
|
214
|
+
"es.string.from-code-point": true,
|
|
215
|
+
"es.string.includes": true,
|
|
216
|
+
"es.string.is-well-formed": true,
|
|
217
|
+
"es.string.italics": true,
|
|
218
|
+
"es.string.link": true,
|
|
219
|
+
"es.string.match": true,
|
|
220
|
+
"es.string.match-all": true,
|
|
221
|
+
"es.string.pad-end": true,
|
|
222
|
+
"es.string.pad-start": true,
|
|
223
|
+
"es.string.raw": true,
|
|
224
|
+
"es.string.repeat": true,
|
|
225
|
+
"es.string.replace": true,
|
|
226
|
+
"es.string.replace-all": true,
|
|
227
|
+
"es.string.search": true,
|
|
228
|
+
"es.string.small": true,
|
|
229
|
+
"es.string.split": true,
|
|
230
|
+
"es.string.starts-with": true,
|
|
231
|
+
"es.string.strike": true,
|
|
232
|
+
"es.string.sub": true,
|
|
233
|
+
"es.string.substr": true,
|
|
234
|
+
"es.string.sup": true,
|
|
235
|
+
"es.string.to-well-formed": true,
|
|
236
|
+
"es.string.trim": true,
|
|
237
|
+
"es.string.trim-end": true,
|
|
238
|
+
"es.string.trim-start": true,
|
|
239
|
+
"es.suppressed-error": false,
|
|
240
|
+
"es.symbol": true,
|
|
241
|
+
"es.symbol.description": true,
|
|
242
|
+
"es.symbol.has-instance": true,
|
|
243
|
+
"es.symbol.is-concat-spreadable": true,
|
|
244
|
+
"es.symbol.match": true,
|
|
245
|
+
"es.symbol.match-all": true,
|
|
246
|
+
"es.symbol.replace": true,
|
|
247
|
+
"es.symbol.search": true,
|
|
248
|
+
"es.symbol.species": true,
|
|
249
|
+
"es.symbol.split": true,
|
|
250
|
+
"es.symbol.to-primitive": true,
|
|
251
|
+
"es.symbol.to-string-tag": true,
|
|
252
|
+
"es.symbol.unscopables": true,
|
|
253
|
+
"es.typed-array": true,
|
|
254
|
+
"es.typed-array.at": true,
|
|
255
|
+
"es.typed-array.copy-within": true,
|
|
256
|
+
"es.typed-array.every": true,
|
|
257
|
+
"es.typed-array.fill": true,
|
|
258
|
+
"es.typed-array.filter": true,
|
|
259
|
+
"es.typed-array.find": true,
|
|
260
|
+
"es.typed-array.find-index": true,
|
|
261
|
+
"es.typed-array.find-last": true,
|
|
262
|
+
"es.typed-array.find-last-index": true,
|
|
263
|
+
"es.typed-array.float32-array": true,
|
|
264
|
+
"es.typed-array.float64-array": true,
|
|
265
|
+
"es.typed-array.for-each": true,
|
|
266
|
+
"es.typed-array.from": true,
|
|
267
|
+
"es.typed-array.includes": true,
|
|
268
|
+
"es.typed-array.index-of": true,
|
|
269
|
+
"es.typed-array.int16-array": true,
|
|
270
|
+
"es.typed-array.int32-array": true,
|
|
271
|
+
"es.typed-array.int8-array": true,
|
|
272
|
+
"es.typed-array.join": true,
|
|
273
|
+
"es.typed-array.last-index-of": true,
|
|
274
|
+
"es.typed-array.map": true,
|
|
275
|
+
"es.typed-array.of": true,
|
|
276
|
+
"es.typed-array.reduce": true,
|
|
277
|
+
"es.typed-array.reduce-right": true,
|
|
278
|
+
"es.typed-array.reverse": true,
|
|
279
|
+
"es.typed-array.set": true,
|
|
280
|
+
"es.typed-array.slice": true,
|
|
281
|
+
"es.typed-array.some": true,
|
|
282
|
+
"es.typed-array.sort": true,
|
|
283
|
+
"es.typed-array.subarray": true,
|
|
284
|
+
"es.typed-array.to-locale-string": true,
|
|
285
|
+
"es.typed-array.to-reversed": true,
|
|
286
|
+
"es.typed-array.to-sorted": true,
|
|
287
|
+
"es.typed-array.to-string": true,
|
|
288
|
+
"es.typed-array.uint16-array": true,
|
|
289
|
+
"es.typed-array.uint32-array": true,
|
|
290
|
+
"es.typed-array.uint8-array": true,
|
|
291
|
+
"es.typed-array.uint8-clamped-array": true,
|
|
292
|
+
"es.typed-array.with": true,
|
|
293
|
+
"es.uint8-array": true,
|
|
294
|
+
"es.unescape": true,
|
|
295
|
+
"es.weak-map": true,
|
|
296
|
+
"es.weak-set": true,
|
|
297
|
+
"es.web.immediate": false,
|
|
298
|
+
"esnext.aggregate-error": true,
|
|
299
|
+
"esnext.array": true,
|
|
300
|
+
"esnext.array-buffer": true,
|
|
301
|
+
"esnext.array-buffer.constructor": true,
|
|
302
|
+
"esnext.array-buffer.detached": true,
|
|
303
|
+
"esnext.array-buffer.is-view": true,
|
|
304
|
+
"esnext.array-buffer.slice": true,
|
|
305
|
+
"esnext.array-buffer.transfer": true,
|
|
306
|
+
"esnext.array-buffer.transfer-to-fixed-length": true,
|
|
307
|
+
"esnext.array.at": true,
|
|
308
|
+
"esnext.array.concat": true,
|
|
309
|
+
"esnext.array.copy-within": true,
|
|
310
|
+
"esnext.array.every": true,
|
|
311
|
+
"esnext.array.fill": true,
|
|
312
|
+
"esnext.array.filter": true,
|
|
313
|
+
"esnext.array.filter-reject": false,
|
|
314
|
+
"esnext.array.find": true,
|
|
315
|
+
"esnext.array.find-index": true,
|
|
316
|
+
"esnext.array.find-last": true,
|
|
317
|
+
"esnext.array.find-last-index": true,
|
|
318
|
+
"esnext.array.flat": true,
|
|
319
|
+
"esnext.array.flat-map": true,
|
|
320
|
+
"esnext.array.for-each": true,
|
|
321
|
+
"esnext.array.from": true,
|
|
322
|
+
"esnext.array.from-async": true,
|
|
323
|
+
"esnext.array.group": false,
|
|
324
|
+
"esnext.array.group-by": false,
|
|
325
|
+
"esnext.array.group-by-to-map": false,
|
|
326
|
+
"esnext.array.group-to-map": false,
|
|
327
|
+
"esnext.array.includes": true,
|
|
328
|
+
"esnext.array.index-of": true,
|
|
329
|
+
"esnext.array.is-array": true,
|
|
330
|
+
"esnext.array.is-template-object": false,
|
|
331
|
+
"esnext.array.join": true,
|
|
332
|
+
"esnext.array.last-index": false,
|
|
333
|
+
"esnext.array.last-index-of": true,
|
|
334
|
+
"esnext.array.last-item": false,
|
|
335
|
+
"esnext.array.map": true,
|
|
336
|
+
"esnext.array.of": true,
|
|
337
|
+
"esnext.array.reduce": true,
|
|
338
|
+
"esnext.array.reduce-right": true,
|
|
339
|
+
"esnext.array.reverse": true,
|
|
340
|
+
"esnext.array.slice": true,
|
|
341
|
+
"esnext.array.some": true,
|
|
342
|
+
"esnext.array.sort": true,
|
|
343
|
+
"esnext.array.splice": true,
|
|
344
|
+
"esnext.array.to-reversed": true,
|
|
345
|
+
"esnext.array.to-sorted": true,
|
|
346
|
+
"esnext.array.to-spliced": true,
|
|
347
|
+
"esnext.array.unique-by": false,
|
|
348
|
+
"esnext.array.unshift": true,
|
|
349
|
+
"esnext.array.with": true,
|
|
350
|
+
"esnext.async-disposable-stack": false,
|
|
351
|
+
"esnext.async-disposable-stack.constructor": false,
|
|
352
|
+
"esnext.async-iterator": false,
|
|
353
|
+
"esnext.bigint.range": false,
|
|
354
|
+
"esnext.composite-key": false,
|
|
355
|
+
"esnext.composite-symbol": false,
|
|
356
|
+
"esnext.data-view": true,
|
|
357
|
+
"esnext.data-view.get-float16": false,
|
|
358
|
+
"esnext.data-view.get-uint8-clamped": false,
|
|
359
|
+
"esnext.data-view.set-float16": false,
|
|
360
|
+
"esnext.data-view.set-uint8-clamped": false,
|
|
361
|
+
"esnext.date": true,
|
|
362
|
+
"esnext.date.get-year": true,
|
|
363
|
+
"esnext.date.now": true,
|
|
364
|
+
"esnext.date.set-year": true,
|
|
365
|
+
"esnext.date.to-gmt-string": true,
|
|
366
|
+
"esnext.date.to-iso-string": true,
|
|
367
|
+
"esnext.date.to-json": true,
|
|
368
|
+
"esnext.date.to-string": true,
|
|
369
|
+
"esnext.disposable-stack": false,
|
|
370
|
+
"esnext.disposable-stack.constructor": false,
|
|
371
|
+
"esnext.error.cause": true,
|
|
372
|
+
"esnext.error.is-error": false,
|
|
373
|
+
"esnext.escape": true,
|
|
374
|
+
"esnext.function": true,
|
|
375
|
+
"esnext.function.bind": true,
|
|
376
|
+
"esnext.function.demethodize": false,
|
|
377
|
+
"esnext.function.is-callable": false,
|
|
378
|
+
"esnext.function.is-constructor": false,
|
|
379
|
+
"esnext.function.name": true,
|
|
380
|
+
"esnext.function.un-this": false,
|
|
381
|
+
"esnext.global-this": true,
|
|
382
|
+
"esnext.iterator": true,
|
|
383
|
+
"esnext.json": true,
|
|
384
|
+
"esnext.json.is-raw-json": true,
|
|
385
|
+
"esnext.json.parse": true,
|
|
386
|
+
"esnext.json.raw-json": true,
|
|
387
|
+
"esnext.json.stringify": true,
|
|
388
|
+
"esnext.map": true,
|
|
389
|
+
"esnext.map.delete-all": false,
|
|
390
|
+
"esnext.map.emplace": false,
|
|
391
|
+
"esnext.map.every": false,
|
|
392
|
+
"esnext.map.filter": false,
|
|
393
|
+
"esnext.map.find": false,
|
|
394
|
+
"esnext.map.find-key": false,
|
|
395
|
+
"esnext.map.from": false,
|
|
396
|
+
"esnext.map.get-or-insert": false,
|
|
397
|
+
"esnext.map.get-or-insert-computed": false,
|
|
398
|
+
"esnext.map.group-by": true,
|
|
399
|
+
"esnext.map.includes": false,
|
|
400
|
+
"esnext.map.key-by": false,
|
|
401
|
+
"esnext.map.key-of": false,
|
|
402
|
+
"esnext.map.map-keys": false,
|
|
403
|
+
"esnext.map.map-values": false,
|
|
404
|
+
"esnext.map.merge": false,
|
|
405
|
+
"esnext.map.of": false,
|
|
406
|
+
"esnext.map.reduce": false,
|
|
407
|
+
"esnext.map.some": false,
|
|
408
|
+
"esnext.map.update": false,
|
|
409
|
+
"esnext.math": true,
|
|
410
|
+
"esnext.math.acosh": true,
|
|
411
|
+
"esnext.math.asinh": true,
|
|
412
|
+
"esnext.math.atanh": true,
|
|
413
|
+
"esnext.math.cbrt": true,
|
|
414
|
+
"esnext.math.clamp": false,
|
|
415
|
+
"esnext.math.clz32": true,
|
|
416
|
+
"esnext.math.cosh": true,
|
|
417
|
+
"esnext.math.deg-per-rad": false,
|
|
418
|
+
"esnext.math.degrees": false,
|
|
419
|
+
"esnext.math.expm1": true,
|
|
420
|
+
"esnext.math.f16round": false,
|
|
421
|
+
"esnext.math.fround": true,
|
|
422
|
+
"esnext.math.fscale": false,
|
|
423
|
+
"esnext.math.hypot": true,
|
|
424
|
+
"esnext.math.iaddh": false,
|
|
425
|
+
"esnext.math.imul": true,
|
|
426
|
+
"esnext.math.imulh": false,
|
|
427
|
+
"esnext.math.isubh": false,
|
|
428
|
+
"esnext.math.log10": true,
|
|
429
|
+
"esnext.math.log1p": true,
|
|
430
|
+
"esnext.math.log2": true,
|
|
431
|
+
"esnext.math.rad-per-deg": false,
|
|
432
|
+
"esnext.math.radians": false,
|
|
433
|
+
"esnext.math.scale": false,
|
|
434
|
+
"esnext.math.seeded-prng": false,
|
|
435
|
+
"esnext.math.sign": true,
|
|
436
|
+
"esnext.math.signbit": false,
|
|
437
|
+
"esnext.math.sinh": true,
|
|
438
|
+
"esnext.math.sum-precise": false,
|
|
439
|
+
"esnext.math.tanh": true,
|
|
440
|
+
"esnext.math.trunc": true,
|
|
441
|
+
"esnext.math.umulh": false,
|
|
442
|
+
"esnext.number": true,
|
|
443
|
+
"esnext.number.constructor": true,
|
|
444
|
+
"esnext.number.epsilon": true,
|
|
445
|
+
"esnext.number.from-string": false,
|
|
446
|
+
"esnext.number.is-finite": true,
|
|
447
|
+
"esnext.number.is-integer": true,
|
|
448
|
+
"esnext.number.is-nan": true,
|
|
449
|
+
"esnext.number.is-safe-integer": true,
|
|
450
|
+
"esnext.number.max-safe-integer": true,
|
|
451
|
+
"esnext.number.min-safe-integer": true,
|
|
452
|
+
"esnext.number.parse-float": true,
|
|
453
|
+
"esnext.number.parse-int": true,
|
|
454
|
+
"esnext.number.range": false,
|
|
455
|
+
"esnext.number.to-exponential": true,
|
|
456
|
+
"esnext.number.to-fixed": true,
|
|
457
|
+
"esnext.number.to-precision": true,
|
|
458
|
+
"esnext.object": true,
|
|
459
|
+
"esnext.object.assign": true,
|
|
460
|
+
"esnext.object.create": true,
|
|
461
|
+
"esnext.object.define-getter": true,
|
|
462
|
+
"esnext.object.define-properties": true,
|
|
463
|
+
"esnext.object.define-property": true,
|
|
464
|
+
"esnext.object.define-setter": true,
|
|
465
|
+
"esnext.object.entries": true,
|
|
466
|
+
"esnext.object.freeze": true,
|
|
467
|
+
"esnext.object.from-entries": true,
|
|
468
|
+
"esnext.object.get-own-property-descriptor": true,
|
|
469
|
+
"esnext.object.get-own-property-descriptors": true,
|
|
470
|
+
"esnext.object.get-own-property-names": true,
|
|
471
|
+
"esnext.object.get-prototype-of": true,
|
|
472
|
+
"esnext.object.group-by": true,
|
|
473
|
+
"esnext.object.has-own": true,
|
|
474
|
+
"esnext.object.is": true,
|
|
475
|
+
"esnext.object.is-extensible": true,
|
|
476
|
+
"esnext.object.is-frozen": true,
|
|
477
|
+
"esnext.object.is-sealed": true,
|
|
478
|
+
"esnext.object.keys": true,
|
|
479
|
+
"esnext.object.lookup-getter": true,
|
|
480
|
+
"esnext.object.lookup-setter": true,
|
|
481
|
+
"esnext.object.prevent-extensions": true,
|
|
482
|
+
"esnext.object.proto": true,
|
|
483
|
+
"esnext.object.seal": true,
|
|
484
|
+
"esnext.object.set-prototype-of": true,
|
|
485
|
+
"esnext.object.values": true,
|
|
486
|
+
"esnext.observable": false,
|
|
487
|
+
"esnext.parse-float": true,
|
|
488
|
+
"esnext.parse-int": true,
|
|
489
|
+
"esnext.promise": true,
|
|
490
|
+
"esnext.promise.all-settled": true,
|
|
491
|
+
"esnext.promise.any": true,
|
|
492
|
+
"esnext.promise.finally": true,
|
|
493
|
+
"esnext.promise.try": true,
|
|
494
|
+
"esnext.promise.with-resolvers": true,
|
|
495
|
+
"esnext.reflect-tag": true,
|
|
496
|
+
"esnext.reflect.apply": true,
|
|
497
|
+
"esnext.reflect.construct": true,
|
|
498
|
+
"esnext.reflect.define-metadata": false,
|
|
499
|
+
"esnext.reflect.define-property": true,
|
|
500
|
+
"esnext.reflect.delete-metadata": false,
|
|
501
|
+
"esnext.reflect.delete-property": true,
|
|
502
|
+
"esnext.reflect.get": true,
|
|
503
|
+
"esnext.reflect.get-metadata": false,
|
|
504
|
+
"esnext.reflect.get-metadata-keys": false,
|
|
505
|
+
"esnext.reflect.get-own-metadata": false,
|
|
506
|
+
"esnext.reflect.get-own-metadata-keys": false,
|
|
507
|
+
"esnext.reflect.get-own-property-descriptor": true,
|
|
508
|
+
"esnext.reflect.get-prototype-of": true,
|
|
509
|
+
"esnext.reflect.has": true,
|
|
510
|
+
"esnext.reflect.has-metadata": false,
|
|
511
|
+
"esnext.reflect.has-own-metadata": false,
|
|
512
|
+
"esnext.reflect.is-extensible": true,
|
|
513
|
+
"esnext.reflect.metadata": false,
|
|
514
|
+
"esnext.reflect.own-keys": true,
|
|
515
|
+
"esnext.reflect.prevent-extensions": true,
|
|
516
|
+
"esnext.reflect.set": true,
|
|
517
|
+
"esnext.reflect.set-prototype-of": true,
|
|
518
|
+
"esnext.regexp": true,
|
|
519
|
+
"esnext.regexp.constructor": true,
|
|
520
|
+
"esnext.regexp.dot-all": true,
|
|
521
|
+
"esnext.regexp.escape": false,
|
|
522
|
+
"esnext.regexp.exec": true,
|
|
523
|
+
"esnext.regexp.flags": true,
|
|
524
|
+
"esnext.regexp.sticky": true,
|
|
525
|
+
"esnext.regexp.test": true,
|
|
526
|
+
"esnext.regexp.to-string": true,
|
|
527
|
+
"esnext.set": true,
|
|
528
|
+
"esnext.set.add-all": false,
|
|
529
|
+
"esnext.set.delete-all": false,
|
|
530
|
+
"esnext.set.difference": false,
|
|
531
|
+
"esnext.set.every": false,
|
|
532
|
+
"esnext.set.filter": false,
|
|
533
|
+
"esnext.set.find": false,
|
|
534
|
+
"esnext.set.from": false,
|
|
535
|
+
"esnext.set.intersection": false,
|
|
536
|
+
"esnext.set.is-disjoint-from": false,
|
|
537
|
+
"esnext.set.is-subset-of": false,
|
|
538
|
+
"esnext.set.is-superset-of": false,
|
|
539
|
+
"esnext.set.join": false,
|
|
540
|
+
"esnext.set.map": false,
|
|
541
|
+
"esnext.set.of": false,
|
|
542
|
+
"esnext.set.reduce": false,
|
|
543
|
+
"esnext.set.some": false,
|
|
544
|
+
"esnext.set.symmetric-difference": false,
|
|
545
|
+
"esnext.set.union": false,
|
|
546
|
+
"esnext.string": true,
|
|
547
|
+
"esnext.string.anchor": true,
|
|
548
|
+
"esnext.string.at": true,
|
|
549
|
+
"esnext.string.big": true,
|
|
550
|
+
"esnext.string.blink": true,
|
|
551
|
+
"esnext.string.bold": true,
|
|
552
|
+
"esnext.string.code-point-at": true,
|
|
553
|
+
"esnext.string.code-points": false,
|
|
554
|
+
"esnext.string.cooked": false,
|
|
555
|
+
"esnext.string.dedent": false,
|
|
556
|
+
"esnext.string.ends-with": true,
|
|
557
|
+
"esnext.string.fixed": true,
|
|
558
|
+
"esnext.string.fontcolor": true,
|
|
559
|
+
"esnext.string.fontsize": true,
|
|
560
|
+
"esnext.string.from-code-point": true,
|
|
561
|
+
"esnext.string.includes": true,
|
|
562
|
+
"esnext.string.is-well-formed": true,
|
|
563
|
+
"esnext.string.italics": false,
|
|
564
|
+
"esnext.string.link": true,
|
|
565
|
+
"esnext.string.match": true,
|
|
566
|
+
"esnext.string.match-all": true,
|
|
567
|
+
"esnext.string.pad-end": true,
|
|
568
|
+
"esnext.string.pad-start": true,
|
|
569
|
+
"esnext.string.raw": true,
|
|
570
|
+
"esnext.string.repeat": true,
|
|
571
|
+
"esnext.string.replace": true,
|
|
572
|
+
"esnext.string.replace-all": true,
|
|
573
|
+
"esnext.string.search": true,
|
|
574
|
+
"esnext.string.small": true,
|
|
575
|
+
"esnext.string.split": true,
|
|
576
|
+
"esnext.string.starts-with": true,
|
|
577
|
+
"esnext.string.strike": true,
|
|
578
|
+
"esnext.string.sub": true,
|
|
579
|
+
"esnext.string.substr": true,
|
|
580
|
+
"esnext.string.sup": true,
|
|
581
|
+
"esnext.string.to-well-formed": true,
|
|
582
|
+
"esnext.string.trim": true,
|
|
583
|
+
"esnext.string.trim-end": true,
|
|
584
|
+
"esnext.string.trim-start": true,
|
|
585
|
+
"esnext.suppressed-error": false,
|
|
586
|
+
"esnext.suppressed-error.constructor": false,
|
|
587
|
+
"esnext.symbol": true,
|
|
588
|
+
"esnext.symbol.async-dispose": true,
|
|
589
|
+
"esnext.symbol.custom-matcher": false,
|
|
590
|
+
"esnext.symbol.description": true,
|
|
591
|
+
"esnext.symbol.dispose": true,
|
|
592
|
+
"esnext.symbol.has-instance": true,
|
|
593
|
+
"esnext.symbol.is-concat-spreadable": true,
|
|
594
|
+
"esnext.symbol.is-registered": false,
|
|
595
|
+
"esnext.symbol.is-registered-symbol": false,
|
|
596
|
+
"esnext.symbol.is-well-known": false,
|
|
597
|
+
"esnext.symbol.is-well-known-symbol": false,
|
|
598
|
+
"esnext.symbol.match": true,
|
|
599
|
+
"esnext.symbol.match-all": true,
|
|
600
|
+
"esnext.symbol.matcher": false,
|
|
601
|
+
"esnext.symbol.metadata": false,
|
|
602
|
+
"esnext.symbol.metadata-key": false,
|
|
603
|
+
"esnext.symbol.observable": false,
|
|
604
|
+
"esnext.symbol.pattern-match": false,
|
|
605
|
+
"esnext.symbol.replace": true,
|
|
606
|
+
"esnext.symbol.search": true,
|
|
607
|
+
"esnext.symbol.species": true,
|
|
608
|
+
"esnext.symbol.split": true,
|
|
609
|
+
"esnext.symbol.to-primitive": true,
|
|
610
|
+
"esnext.symbol.to-string-tag": true,
|
|
611
|
+
"esnext.symbol.unscopables": true,
|
|
612
|
+
"esnext.typed-array": true,
|
|
613
|
+
"esnext.typed-array.at": true,
|
|
614
|
+
"esnext.typed-array.copy-within": true,
|
|
615
|
+
"esnext.typed-array.every": true,
|
|
616
|
+
"esnext.typed-array.fill": true,
|
|
617
|
+
"esnext.typed-array.filter": true,
|
|
618
|
+
"esnext.typed-array.filter-reject": false,
|
|
619
|
+
"esnext.typed-array.find": true,
|
|
620
|
+
"esnext.typed-array.find-index": true,
|
|
621
|
+
"esnext.typed-array.find-last": true,
|
|
622
|
+
"esnext.typed-array.find-last-index": true,
|
|
623
|
+
"esnext.typed-array.float32-array": true,
|
|
624
|
+
"esnext.typed-array.float64-array": true,
|
|
625
|
+
"esnext.typed-array.for-each": true,
|
|
626
|
+
"esnext.typed-array.from": true,
|
|
627
|
+
"esnext.typed-array.from-async": false,
|
|
628
|
+
"esnext.typed-array.group-by": false,
|
|
629
|
+
"esnext.typed-array.includes": true,
|
|
630
|
+
"esnext.typed-array.index-of": true,
|
|
631
|
+
"esnext.typed-array.int16-array": true,
|
|
632
|
+
"esnext.typed-array.int32-array": true,
|
|
633
|
+
"esnext.typed-array.int8-array": true,
|
|
634
|
+
"esnext.typed-array.join": true,
|
|
635
|
+
"esnext.typed-array.last-index-of": true,
|
|
636
|
+
"esnext.typed-array.map": true,
|
|
637
|
+
"esnext.typed-array.of": true,
|
|
638
|
+
"esnext.typed-array.reduce": true,
|
|
639
|
+
"esnext.typed-array.reduce-right": true,
|
|
640
|
+
"esnext.typed-array.reverse": true,
|
|
641
|
+
"esnext.typed-array.set": true,
|
|
642
|
+
"esnext.typed-array.slice": true,
|
|
643
|
+
"esnext.typed-array.some": true,
|
|
644
|
+
"esnext.typed-array.sort": true,
|
|
645
|
+
"esnext.typed-array.subarray": true,
|
|
646
|
+
"esnext.typed-array.to-locale-string": true,
|
|
647
|
+
"esnext.typed-array.to-reversed": true,
|
|
648
|
+
"esnext.typed-array.to-sorted": true,
|
|
649
|
+
"esnext.typed-array.to-spliced": false,
|
|
650
|
+
"esnext.typed-array.to-string": true,
|
|
651
|
+
"esnext.typed-array.uint16-array": true,
|
|
652
|
+
"esnext.typed-array.uint32-array": true,
|
|
653
|
+
"esnext.typed-array.uint8-array": true,
|
|
654
|
+
"esnext.typed-array.uint8-clamped-array": true,
|
|
655
|
+
"esnext.typed-array.unique-by": false,
|
|
656
|
+
"esnext.typed-array.with": true,
|
|
657
|
+
"esnext.uint8-array": true,
|
|
658
|
+
"esnext.uint8-array.from-base64": false,
|
|
659
|
+
"esnext.uint8-array.from-hex": false,
|
|
660
|
+
"esnext.uint8-array.set-from-base64": false,
|
|
661
|
+
"esnext.uint8-array.set-from-hex": false,
|
|
662
|
+
"esnext.uint8-array.to-base64": false,
|
|
663
|
+
"esnext.uint8-array.to-hex": false,
|
|
664
|
+
"esnext.unescape": true,
|
|
665
|
+
"esnext.weak-map": true,
|
|
666
|
+
"esnext.weak-map.delete-all": false,
|
|
667
|
+
"esnext.weak-map.emplace": false,
|
|
668
|
+
"esnext.weak-map.from": false,
|
|
669
|
+
"esnext.weak-map.get-or-insert": false,
|
|
670
|
+
"esnext.weak-map.get-or-insert-computed": false,
|
|
671
|
+
"esnext.weak-map.of": false,
|
|
672
|
+
"esnext.weak-set": true,
|
|
673
|
+
"esnext.weak-set.add-all": false,
|
|
674
|
+
"esnext.weak-set.delete-all": false,
|
|
675
|
+
"esnext.weak-set.from": false,
|
|
676
|
+
"esnext.weak-set.of": false,
|
|
677
|
+
"esnext.web.immediate": false,
|
|
678
|
+
"web.atob": true,
|
|
679
|
+
"web.btoa": true,
|
|
680
|
+
"web.dom-exception": true,
|
|
681
|
+
"web.dom-exception.constructor": true,
|
|
682
|
+
"web.immediate": false,
|
|
683
|
+
"web.queue-microtask": true,
|
|
684
|
+
"web.self": true,
|
|
685
|
+
"web.structured-clone": true,
|
|
686
|
+
"web.timers": true,
|
|
687
|
+
"web.url": true,
|
|
688
|
+
"web.url-search-params": true,
|
|
689
|
+
"web.url-search-params.delete": true,
|
|
690
|
+
"web.url-search-params.has": true,
|
|
691
|
+
"web.url-search-params.size": true,
|
|
692
|
+
"web.url.can-parse": true,
|
|
693
|
+
"web.url.parse": true,
|
|
694
|
+
"web.url.to-json": true,
|
|
695
|
+
}
|
|
696
|
+
`;
|
|
697
|
+
|
|
698
|
+
exports[`polyfills spec to feature generator should generate feature: expression dictionary: featureDict 1`] = `
|
|
699
|
+
{
|
|
700
|
+
"es.aggregate-error": "window.AggregateError",
|
|
701
|
+
"es.array": "window.Array",
|
|
702
|
+
"es.array-buffer": "window.ArrayBuffer",
|
|
703
|
+
"es.array-buffer.constructor": "'constructor' in window.ArrayBuffer.prototype",
|
|
704
|
+
"es.array-buffer.detached": "'detached' in window.ArrayBuffer.prototype",
|
|
705
|
+
"es.array-buffer.is-view": "ArrayBuffer.isView",
|
|
706
|
+
"es.array-buffer.slice": "'slice' in window.ArrayBuffer.prototype",
|
|
707
|
+
"es.array-buffer.transfer": "'transfer' in window.ArrayBuffer.prototype",
|
|
708
|
+
"es.array-buffer.transfer-to-fixed-length": "'transferToFixedLength' in window.ArrayBuffer.prototype",
|
|
709
|
+
"es.array.at": "'at' in window.Array.prototype",
|
|
710
|
+
"es.array.concat": "'concat' in window.Array.prototype",
|
|
711
|
+
"es.array.copy-within": "'copyWithin' in window.Array.prototype",
|
|
712
|
+
"es.array.every": "'every' in window.Array.prototype",
|
|
713
|
+
"es.array.fill": "'fill' in window.Array.prototype",
|
|
714
|
+
"es.array.filter": "'filter' in window.Array.prototype",
|
|
715
|
+
"es.array.find": "'find' in window.Array.prototype",
|
|
716
|
+
"es.array.find-index": "'findIndex' in window.Array.prototype",
|
|
717
|
+
"es.array.find-last": "'findLast' in window.Array.prototype",
|
|
718
|
+
"es.array.find-last-index": "'findLastIndex' in window.Array.prototype",
|
|
719
|
+
"es.array.flat": "'flat' in window.Array.prototype",
|
|
720
|
+
"es.array.flat-map": "'flatMap' in window.Array.prototype",
|
|
721
|
+
"es.array.for-each": "'forEach' in window.Array.prototype",
|
|
722
|
+
"es.array.from": "Array.from",
|
|
723
|
+
"es.array.includes": "'includes' in window.Array.prototype",
|
|
724
|
+
"es.array.index-of": "'indexOf' in window.Array.prototype",
|
|
725
|
+
"es.array.is-array": "Array.isArray",
|
|
726
|
+
"es.array.join": "'join' in window.Array.prototype",
|
|
727
|
+
"es.array.last-index-of": "'lastIndexOf' in window.Array.prototype",
|
|
728
|
+
"es.array.map": "'map' in window.Array.prototype",
|
|
729
|
+
"es.array.of": "Array.of",
|
|
730
|
+
"es.array.reduce": "'reduce' in window.Array.prototype",
|
|
731
|
+
"es.array.reduce-right": "'reduceRight' in window.Array.prototype",
|
|
732
|
+
"es.array.reverse": "'reverse' in window.Array.prototype",
|
|
733
|
+
"es.array.slice": "'slice' in window.Array.prototype",
|
|
734
|
+
"es.array.some": "'some' in window.Array.prototype",
|
|
735
|
+
"es.array.sort": "'sort' in window.Array.prototype",
|
|
736
|
+
"es.array.splice": "'splice' in window.Array.prototype",
|
|
737
|
+
"es.array.to-reversed": "'toReversed' in window.Array.prototype",
|
|
738
|
+
"es.array.to-sorted": "'toSorted' in window.Array.prototype",
|
|
739
|
+
"es.array.to-spliced": "'toSpliced' in window.Array.prototype",
|
|
740
|
+
"es.array.unshift": "'unshift' in window.Array.prototype",
|
|
741
|
+
"es.array.with": "'with' in window.Array.prototype",
|
|
742
|
+
"es.async-disposable-stack": "window.AsyncDisposableStack",
|
|
743
|
+
"es.data-view": "window.DataView",
|
|
744
|
+
"es.date": "window.Date",
|
|
745
|
+
"es.date.get-year": "'getYear' in window.Date.prototype",
|
|
746
|
+
"es.date.now": "Date.now",
|
|
747
|
+
"es.date.set-year": "'setYear' in window.Date.prototype",
|
|
748
|
+
"es.date.to-gmt-string": "'toGMTString' in window.Date.prototype",
|
|
749
|
+
"es.date.to-iso-string": "'toISOString' in window.Date.prototype",
|
|
750
|
+
"es.date.to-json": "'toJSON' in window.Date.prototype",
|
|
751
|
+
"es.date.to-string": "window.Date.toString",
|
|
752
|
+
"es.disposable-stack": "window.DisposableStack",
|
|
753
|
+
"es.error.cause": "window.URIError",
|
|
754
|
+
"es.escape": "window.escape",
|
|
755
|
+
"es.function": "window.Function",
|
|
756
|
+
"es.function.bind": "'bind' in window.Function.prototype",
|
|
757
|
+
"es.function.name": "'name' in window.Function.prototype",
|
|
758
|
+
"es.global-this": "window.globalThis",
|
|
759
|
+
"es.iterator": "window.Iterator",
|
|
760
|
+
"es.json": "window.JSON",
|
|
761
|
+
"es.json.stringify": "window.JSON.stringify",
|
|
762
|
+
"es.map": "window.Map",
|
|
763
|
+
"es.map.group-by": "Map.groupBy",
|
|
764
|
+
"es.math": "window.Math",
|
|
765
|
+
"es.math.acosh": "Math.acosh",
|
|
766
|
+
"es.math.asinh": "Math.asinh",
|
|
767
|
+
"es.math.atanh": "Math.atanh",
|
|
768
|
+
"es.math.cbrt": "Math.cbrt",
|
|
769
|
+
"es.math.clz32": "Math.clz32",
|
|
770
|
+
"es.math.cosh": "Math.cosh",
|
|
771
|
+
"es.math.expm1": "Math.expm1",
|
|
772
|
+
"es.math.fround": "Math.fround",
|
|
773
|
+
"es.math.hypot": "Math.hypot",
|
|
774
|
+
"es.math.imul": "Math.imul",
|
|
775
|
+
"es.math.log10": "Math.log10",
|
|
776
|
+
"es.math.log1p": "Math.log1p",
|
|
777
|
+
"es.math.log2": "Math.log2",
|
|
778
|
+
"es.math.sign": "Math.sign",
|
|
779
|
+
"es.math.sinh": "Math.sinh",
|
|
780
|
+
"es.math.tanh": "Math.tanh",
|
|
781
|
+
"es.math.trunc": "Math.trunc",
|
|
782
|
+
"es.number": "window.Number",
|
|
783
|
+
"es.number.constructor": "window.Number.constructor",
|
|
784
|
+
"es.number.epsilon": "Number.EPSILON",
|
|
785
|
+
"es.number.is-finite": "Number.isFinite",
|
|
786
|
+
"es.number.is-integer": "Number.isInteger",
|
|
787
|
+
"es.number.is-nan": "Number.isNaN",
|
|
788
|
+
"es.number.is-safe-integer": "Number.isSafeInteger",
|
|
789
|
+
"es.number.max-safe-integer": "Number.MAX_SAFE_INTEGER",
|
|
790
|
+
"es.number.min-safe-integer": "Number.MIN_SAFE_INTEGER",
|
|
791
|
+
"es.number.parse-float": "Number.parseFloat",
|
|
792
|
+
"es.number.parse-int": "Number.parseInt",
|
|
793
|
+
"es.number.to-exponential": "'toExponential' in window.Number.prototype",
|
|
794
|
+
"es.number.to-fixed": "'toFixed' in window.Number.prototype",
|
|
795
|
+
"es.number.to-precision": "'toPrecision' in window.Number.prototype",
|
|
796
|
+
"es.object": "window.Object",
|
|
797
|
+
"es.object.assign": "Object.assign",
|
|
798
|
+
"es.object.create": "Object.create",
|
|
799
|
+
"es.object.define-getter": "'__defineGetter__' in window.Object.prototype",
|
|
800
|
+
"es.object.define-properties": "Object.defineProperties",
|
|
801
|
+
"es.object.define-property": "Object.defineProperty",
|
|
802
|
+
"es.object.define-setter": "'__defineSetter__' in window.Object.prototype",
|
|
803
|
+
"es.object.entries": "Object.entries",
|
|
804
|
+
"es.object.freeze": "Object.freeze",
|
|
805
|
+
"es.object.from-entries": "Object.fromEntries",
|
|
806
|
+
"es.object.get-own-property-descriptor": "Object.getOwnPropertyDescriptor",
|
|
807
|
+
"es.object.get-own-property-descriptors": "Object.getOwnPropertyDescriptors",
|
|
808
|
+
"es.object.get-own-property-names": "Object.getOwnPropertyNames",
|
|
809
|
+
"es.object.get-prototype-of": "Object.getPrototypeOf",
|
|
810
|
+
"es.object.group-by": "Object.groupBy",
|
|
811
|
+
"es.object.has-own": "Object.hasOwn",
|
|
812
|
+
"es.object.is": "Object.is",
|
|
813
|
+
"es.object.is-extensible": "Object.isExtensible",
|
|
814
|
+
"es.object.is-frozen": "Object.isFrozen",
|
|
815
|
+
"es.object.is-sealed": "Object.isSealed",
|
|
816
|
+
"es.object.keys": "Object.keys",
|
|
817
|
+
"es.object.lookup-getter": "'__lookupGetter__' in window.Object.prototype",
|
|
818
|
+
"es.object.lookup-setter": "'__lookupSetter__' in window.Object.prototype",
|
|
819
|
+
"es.object.prevent-extensions": "Object.preventExtensions",
|
|
820
|
+
"es.object.proto": "'__proto__' in window.Object.prototype",
|
|
821
|
+
"es.object.seal": "Object.seal",
|
|
822
|
+
"es.object.set-prototype-of": "Object.setPrototypeOf",
|
|
823
|
+
"es.object.values": "Object.values",
|
|
824
|
+
"es.observable": "window.Observable",
|
|
825
|
+
"es.parse-float": "window.parseFloat",
|
|
826
|
+
"es.parse-int": "window.parseInt",
|
|
827
|
+
"es.promise": "window.Promise",
|
|
828
|
+
"es.promise.all-settled": "Promise.allSettled",
|
|
829
|
+
"es.promise.any": "Promise.any",
|
|
830
|
+
"es.promise.finally": "'finally' in window.Promise.prototype",
|
|
831
|
+
"es.promise.try": "Promise.try",
|
|
832
|
+
"es.promise.with-resolvers": "Promise.withResolvers",
|
|
833
|
+
"es.reflect-tag": "window.Reflect",
|
|
834
|
+
"es.reflect.apply": "Reflect.apply",
|
|
835
|
+
"es.reflect.construct": "Reflect.construct",
|
|
836
|
+
"es.reflect.define-property": "Reflect.defineProperty",
|
|
837
|
+
"es.reflect.delete-property": "Reflect.deleteProperty",
|
|
838
|
+
"es.reflect.get": "Reflect.get",
|
|
839
|
+
"es.reflect.get-own-property-descriptor": "Reflect.getOwnPropertyDescriptor",
|
|
840
|
+
"es.reflect.get-prototype-of": "Reflect.getPrototypeOf",
|
|
841
|
+
"es.reflect.has": "Reflect.has",
|
|
842
|
+
"es.reflect.is-extensible": "Reflect.isExtensible",
|
|
843
|
+
"es.reflect.own-keys": "Reflect.ownKeys",
|
|
844
|
+
"es.reflect.prevent-extensions": "Reflect.preventExtensions",
|
|
845
|
+
"es.reflect.set": "Reflect.set",
|
|
846
|
+
"es.reflect.set-prototype-of": "Reflect.setPrototypeOf",
|
|
847
|
+
"es.regexp": "window.RegExp",
|
|
848
|
+
"es.regexp.constructor": "window.RegExp.constructor",
|
|
849
|
+
"es.regexp.dot-all": "'dotAll' in window.RegExp.prototype",
|
|
850
|
+
"es.regexp.exec": "'exec' in window.RegExp.prototype",
|
|
851
|
+
"es.regexp.flags": "'flags' in window.RegExp.prototype",
|
|
852
|
+
"es.regexp.sticky": "'sticky' in window.RegExp.prototype",
|
|
853
|
+
"es.regexp.test": "'test' in window.RegExp.prototype",
|
|
854
|
+
"es.regexp.to-string": "window.RegExp.toString",
|
|
855
|
+
"es.set": "window.Set",
|
|
856
|
+
"es.string": "window.String",
|
|
857
|
+
"es.string.anchor": "'anchor' in window.String.prototype",
|
|
858
|
+
"es.string.big": "'big' in window.String.prototype",
|
|
859
|
+
"es.string.blink": "'blink' in window.String.prototype",
|
|
860
|
+
"es.string.bold": "'bold' in window.String.prototype",
|
|
861
|
+
"es.string.code-point-at": "'codePointAt' in window.String.prototype",
|
|
862
|
+
"es.string.ends-with": "'endsWith' in window.String.prototype",
|
|
863
|
+
"es.string.fixed": "'fixed' in window.String.prototype",
|
|
864
|
+
"es.string.fontcolor": "'fontcolor' in window.String.prototype",
|
|
865
|
+
"es.string.fontsize": "'fontsize' in window.String.prototype",
|
|
866
|
+
"es.string.from-code-point": "String.fromCodePoint",
|
|
867
|
+
"es.string.includes": "'includes' in window.String.prototype",
|
|
868
|
+
"es.string.is-well-formed": "'isWellFormed' in window.String.prototype",
|
|
869
|
+
"es.string.italics": "'italics' in window.String.prototype",
|
|
870
|
+
"es.string.link": "'link' in window.String.prototype",
|
|
871
|
+
"es.string.match": "'match' in window.String.prototype",
|
|
872
|
+
"es.string.match-all": "'matchAll' in window.String.prototype",
|
|
873
|
+
"es.string.pad-end": "'padEnd' in window.String.prototype",
|
|
874
|
+
"es.string.pad-start": "'padStart' in window.String.prototype",
|
|
875
|
+
"es.string.raw": "String.raw",
|
|
876
|
+
"es.string.repeat": "'repeat' in window.String.prototype",
|
|
877
|
+
"es.string.replace": "'replace' in window.String.prototype",
|
|
878
|
+
"es.string.replace-all": "'replaceAll' in window.String.prototype",
|
|
879
|
+
"es.string.search": "'search' in window.String.prototype",
|
|
880
|
+
"es.string.small": "'small' in window.String.prototype",
|
|
881
|
+
"es.string.split": "'split' in window.String.prototype",
|
|
882
|
+
"es.string.starts-with": "'startsWith' in window.String.prototype",
|
|
883
|
+
"es.string.strike": "'strike' in window.String.prototype",
|
|
884
|
+
"es.string.sub": "'sub' in window.String.prototype",
|
|
885
|
+
"es.string.substr": "'substr' in window.String.prototype",
|
|
886
|
+
"es.string.sup": "'sup' in window.String.prototype",
|
|
887
|
+
"es.string.to-well-formed": "'toWellFormed' in window.String.prototype",
|
|
888
|
+
"es.string.trim": "'trim' in window.String.prototype",
|
|
889
|
+
"es.string.trim-end": "'trimEnd' in window.String.prototype",
|
|
890
|
+
"es.string.trim-start": "'trimLeft' in window.String.prototype",
|
|
891
|
+
"es.suppressed-error": "window.SuppressedError",
|
|
892
|
+
"es.symbol": "window.Symbol",
|
|
893
|
+
"es.symbol.description": "'description' in window.Symbol.prototype",
|
|
894
|
+
"es.symbol.has-instance": "Symbol.hasInstance",
|
|
895
|
+
"es.symbol.is-concat-spreadable": "Symbol.isConcatSpreadable",
|
|
896
|
+
"es.symbol.match": "Symbol.match",
|
|
897
|
+
"es.symbol.match-all": "Symbol.matchAll",
|
|
898
|
+
"es.symbol.replace": "Symbol.replace",
|
|
899
|
+
"es.symbol.search": "Symbol.search",
|
|
900
|
+
"es.symbol.species": "Symbol.species",
|
|
901
|
+
"es.symbol.split": "Symbol.split",
|
|
902
|
+
"es.symbol.to-primitive": "Symbol.toPrimitive",
|
|
903
|
+
"es.symbol.to-string-tag": "Symbol.toStringTag",
|
|
904
|
+
"es.symbol.unscopables": "Symbol.unscopables",
|
|
905
|
+
"es.typed-array": "window.Int8Array",
|
|
906
|
+
"es.typed-array.at": "'at' in window.Int8Array.prototype",
|
|
907
|
+
"es.typed-array.copy-within": "'copyWithin' in window.Int8Array.prototype",
|
|
908
|
+
"es.typed-array.every": "'every' in window.Int8Array.prototype",
|
|
909
|
+
"es.typed-array.fill": "'fill' in window.Int8Array.prototype",
|
|
910
|
+
"es.typed-array.filter": "'filter' in window.Int8Array.prototype",
|
|
911
|
+
"es.typed-array.find": "'find' in window.Int8Array.prototype",
|
|
912
|
+
"es.typed-array.find-index": "'findIndex' in window.Int8Array.prototype",
|
|
913
|
+
"es.typed-array.find-last": "'findLast' in window.Int8Array.prototype",
|
|
914
|
+
"es.typed-array.find-last-index": "'findLastIndex' in window.Int8Array.prototype",
|
|
915
|
+
"es.typed-array.float32-array": "window.Float32Array",
|
|
916
|
+
"es.typed-array.float64-array": "window.Float64Array",
|
|
917
|
+
"es.typed-array.for-each": "'forEach' in window.Int8Array.prototype",
|
|
918
|
+
"es.typed-array.from": "Int8Array.from",
|
|
919
|
+
"es.typed-array.includes": "'includes' in window.Int8Array.prototype",
|
|
920
|
+
"es.typed-array.index-of": "'indexOf' in window.Int8Array.prototype",
|
|
921
|
+
"es.typed-array.int16-array": "window.Int16Array",
|
|
922
|
+
"es.typed-array.int32-array": "window.Int32Array",
|
|
923
|
+
"es.typed-array.int8-array": "window.Int8Array",
|
|
924
|
+
"es.typed-array.join": "'join' in window.Int8Array.prototype",
|
|
925
|
+
"es.typed-array.last-index-of": "'lastIndexOf' in window.Int8Array.prototype",
|
|
926
|
+
"es.typed-array.map": "'map' in window.Int8Array.prototype",
|
|
927
|
+
"es.typed-array.of": "Int8Array.of",
|
|
928
|
+
"es.typed-array.reduce": "'reduce' in window.Int8Array.prototype",
|
|
929
|
+
"es.typed-array.reduce-right": "'reduceRight' in window.Int8Array.prototype",
|
|
930
|
+
"es.typed-array.reverse": "'reverse' in window.Int8Array.prototype",
|
|
931
|
+
"es.typed-array.set": "'set' in window.Int8Array.prototype",
|
|
932
|
+
"es.typed-array.slice": "'slice' in window.Int8Array.prototype",
|
|
933
|
+
"es.typed-array.some": "'some' in window.Int8Array.prototype",
|
|
934
|
+
"es.typed-array.sort": "'sort' in window.Int8Array.prototype",
|
|
935
|
+
"es.typed-array.subarray": "'subarray' in window.Int8Array.prototype",
|
|
936
|
+
"es.typed-array.to-locale-string": "'toLocaleString' in window.Int8Array.prototype",
|
|
937
|
+
"es.typed-array.to-reversed": "'toReversed' in window.Int8Array.prototype",
|
|
938
|
+
"es.typed-array.to-sorted": "'toSorted' in window.Int8Array.prototype",
|
|
939
|
+
"es.typed-array.to-string": "'toString' in window.Int8Array.prototype",
|
|
940
|
+
"es.typed-array.uint16-array": "window.Uint16Array",
|
|
941
|
+
"es.typed-array.uint32-array": "window.Uint32Array",
|
|
942
|
+
"es.typed-array.uint8-array": "window.Uint8Array",
|
|
943
|
+
"es.typed-array.uint8-clamped-array": "window.Uint8ClampedArray",
|
|
944
|
+
"es.typed-array.with": "'with' in window.Int8Array.prototype",
|
|
945
|
+
"es.uint8-array": "window.Uint8Array",
|
|
946
|
+
"es.unescape": "window.unescape",
|
|
947
|
+
"es.weak-map": "window.WeakMap",
|
|
948
|
+
"es.weak-set": "window.WeakSet",
|
|
949
|
+
"es.web.immediate": "window.setImmediate",
|
|
950
|
+
"esnext.aggregate-error": "window.AggregateError",
|
|
951
|
+
"esnext.array": "window.Array",
|
|
952
|
+
"esnext.array-buffer": "window.ArrayBuffer",
|
|
953
|
+
"esnext.array-buffer.constructor": "'constructor' in window.ArrayBuffer.prototype",
|
|
954
|
+
"esnext.array-buffer.detached": "'detached' in window.ArrayBuffer.prototype",
|
|
955
|
+
"esnext.array-buffer.is-view": "ArrayBuffer.isView",
|
|
956
|
+
"esnext.array-buffer.slice": "'slice' in window.ArrayBuffer.prototype",
|
|
957
|
+
"esnext.array-buffer.transfer": "'transfer' in window.ArrayBuffer.prototype",
|
|
958
|
+
"esnext.array-buffer.transfer-to-fixed-length": "'transferToFixedLength' in window.ArrayBuffer.prototype",
|
|
959
|
+
"esnext.array.at": "'at' in window.Array.prototype",
|
|
960
|
+
"esnext.array.concat": "'concat' in window.Array.prototype",
|
|
961
|
+
"esnext.array.copy-within": "'copyWithin' in window.Array.prototype",
|
|
962
|
+
"esnext.array.every": "'every' in window.Array.prototype",
|
|
963
|
+
"esnext.array.fill": "'fill' in window.Array.prototype",
|
|
964
|
+
"esnext.array.filter": "'filter' in window.Array.prototype",
|
|
965
|
+
"esnext.array.filter-reject": "'filterReject' in window.Array.prototype",
|
|
966
|
+
"esnext.array.find": "'find' in window.Array.prototype",
|
|
967
|
+
"esnext.array.find-index": "'findIndex' in window.Array.prototype",
|
|
968
|
+
"esnext.array.find-last": "'findLast' in window.Array.prototype",
|
|
969
|
+
"esnext.array.find-last-index": "'findLastIndex' in window.Array.prototype",
|
|
970
|
+
"esnext.array.flat": "'flat' in window.Array.prototype",
|
|
971
|
+
"esnext.array.flat-map": "'flatMap' in window.Array.prototype",
|
|
972
|
+
"esnext.array.for-each": "'forEach' in window.Array.prototype",
|
|
973
|
+
"esnext.array.from": "Array.from",
|
|
974
|
+
"esnext.array.from-async": "Array.fromAsync",
|
|
975
|
+
"esnext.array.group": "'group' in window.Array.prototype",
|
|
976
|
+
"esnext.array.group-by": "'groupBy' in window.Array.prototype",
|
|
977
|
+
"esnext.array.group-by-to-map": "'groupByToMap' in window.Array.prototype",
|
|
978
|
+
"esnext.array.group-to-map": "'groupToMap' in window.Array.prototype",
|
|
979
|
+
"esnext.array.includes": "'includes' in window.Array.prototype",
|
|
980
|
+
"esnext.array.index-of": "'indexOf' in window.Array.prototype",
|
|
981
|
+
"esnext.array.is-array": "Array.isArray",
|
|
982
|
+
"esnext.array.is-template-object": "Array.isTemplateObject",
|
|
983
|
+
"esnext.array.join": "'join' in window.Array.prototype",
|
|
984
|
+
"esnext.array.last-index": "'lastIndex' in window.Array.prototype",
|
|
985
|
+
"esnext.array.last-index-of": "'lastIndexOf' in window.Array.prototype",
|
|
986
|
+
"esnext.array.last-item": "'lastItem' in window.Array.prototype",
|
|
987
|
+
"esnext.array.map": "'map' in window.Array.prototype",
|
|
988
|
+
"esnext.array.of": "Array.of",
|
|
989
|
+
"esnext.array.reduce": "'reduce' in window.Array.prototype",
|
|
990
|
+
"esnext.array.reduce-right": "'reduceRight' in window.Array.prototype",
|
|
991
|
+
"esnext.array.reverse": "'reverse' in window.Array.prototype",
|
|
992
|
+
"esnext.array.slice": "'slice' in window.Array.prototype",
|
|
993
|
+
"esnext.array.some": "'some' in window.Array.prototype",
|
|
994
|
+
"esnext.array.sort": "'sort' in window.Array.prototype",
|
|
995
|
+
"esnext.array.splice": "'splice' in window.Array.prototype",
|
|
996
|
+
"esnext.array.to-reversed": "'toReversed' in window.Array.prototype",
|
|
997
|
+
"esnext.array.to-sorted": "'toSorted' in window.Array.prototype",
|
|
998
|
+
"esnext.array.to-spliced": "'toSpliced' in window.Array.prototype",
|
|
999
|
+
"esnext.array.unique-by": "'uniqueBy' in window.Array.prototype",
|
|
1000
|
+
"esnext.array.unshift": "'unshift' in window.Array.prototype",
|
|
1001
|
+
"esnext.array.with": "'with' in window.Array.prototype",
|
|
1002
|
+
"esnext.async-disposable-stack": "window.AsyncDisposableStack",
|
|
1003
|
+
"esnext.async-disposable-stack.constructor": "window.AsyncDisposableStack && window.AsyncDisposableStack.constructor",
|
|
1004
|
+
"esnext.async-iterator": "window.AsyncIterator",
|
|
1005
|
+
"esnext.bigint.range": "BigInt.range",
|
|
1006
|
+
"esnext.composite-key": "window.compositeKey",
|
|
1007
|
+
"esnext.composite-symbol": "window.compositeSymbol",
|
|
1008
|
+
"esnext.data-view": "window.DataView",
|
|
1009
|
+
"esnext.data-view.get-float16": "'getFloat16' in window.DataView.prototype",
|
|
1010
|
+
"esnext.data-view.get-uint8-clamped": "'getUint8Clamped' in window.DataView.prototype",
|
|
1011
|
+
"esnext.data-view.set-float16": "'setFloat16' in window.DataView.prototype",
|
|
1012
|
+
"esnext.data-view.set-uint8-clamped": "'setUint8Clamped' in window.DataView.prototype",
|
|
1013
|
+
"esnext.date": "window.Date",
|
|
1014
|
+
"esnext.date.get-year": "'getYear' in window.Date.prototype",
|
|
1015
|
+
"esnext.date.now": "Date.now",
|
|
1016
|
+
"esnext.date.set-year": "'setYear' in window.Date.prototype",
|
|
1017
|
+
"esnext.date.to-gmt-string": "'toGMTString' in window.Date.prototype",
|
|
1018
|
+
"esnext.date.to-iso-string": "'toISOString' in window.Date.prototype",
|
|
1019
|
+
"esnext.date.to-json": "'toJSON' in window.Date.prototype",
|
|
1020
|
+
"esnext.date.to-string": "window.Date.toString",
|
|
1021
|
+
"esnext.disposable-stack": "window.DisposableStack",
|
|
1022
|
+
"esnext.disposable-stack.constructor": "window.DisposableStack && window.DisposableStack.constructor",
|
|
1023
|
+
"esnext.error.cause": "window.URIError",
|
|
1024
|
+
"esnext.error.is-error": "Error.isError",
|
|
1025
|
+
"esnext.escape": "window.escape",
|
|
1026
|
+
"esnext.function": "window.Function",
|
|
1027
|
+
"esnext.function.bind": "'bind' in window.Function.prototype",
|
|
1028
|
+
"esnext.function.demethodize": "'demethodize' in window.Function.prototype",
|
|
1029
|
+
"esnext.function.is-callable": "Function.isCallable",
|
|
1030
|
+
"esnext.function.is-constructor": "Function.isConstructor",
|
|
1031
|
+
"esnext.function.name": "'name' in window.Function.prototype",
|
|
1032
|
+
"esnext.function.un-this": "'unThis' in window.Function.prototype",
|
|
1033
|
+
"esnext.global-this": "window.globalThis",
|
|
1034
|
+
"esnext.iterator": "window.Iterator",
|
|
1035
|
+
"esnext.json": "window.JSON",
|
|
1036
|
+
"esnext.json.is-raw-json": "JSON.isRawJSON",
|
|
1037
|
+
"esnext.json.parse": "JSON.parse",
|
|
1038
|
+
"esnext.json.raw-json": "JSON.rawJSON",
|
|
1039
|
+
"esnext.json.stringify": "window.JSON.stringify",
|
|
1040
|
+
"esnext.map": "window.Map",
|
|
1041
|
+
"esnext.map.delete-all": "window.Map.deleteAll",
|
|
1042
|
+
"esnext.map.emplace": "window.Map.emplace",
|
|
1043
|
+
"esnext.map.every": "window.Map.every",
|
|
1044
|
+
"esnext.map.filter": "window.Map.filter",
|
|
1045
|
+
"esnext.map.find": "window.Map.find",
|
|
1046
|
+
"esnext.map.find-key": "window.Map.findKey",
|
|
1047
|
+
"esnext.map.from": "Map.from",
|
|
1048
|
+
"esnext.map.get-or-insert": "window.Map.getOrInsert",
|
|
1049
|
+
"esnext.map.get-or-insert-computed": "window.Map.getOrInsertComputed",
|
|
1050
|
+
"esnext.map.group-by": "Map.groupBy",
|
|
1051
|
+
"esnext.map.includes": "window.Map.includes",
|
|
1052
|
+
"esnext.map.key-by": "Map.keyBy",
|
|
1053
|
+
"esnext.map.key-of": "window.Map.keyOf",
|
|
1054
|
+
"esnext.map.map-keys": "window.Map.mapKeys",
|
|
1055
|
+
"esnext.map.map-values": "window.Map.mapValues",
|
|
1056
|
+
"esnext.map.merge": "window.Map.merge",
|
|
1057
|
+
"esnext.map.of": "Map.of",
|
|
1058
|
+
"esnext.map.reduce": "window.Map.reduce",
|
|
1059
|
+
"esnext.map.some": "window.Map.some",
|
|
1060
|
+
"esnext.map.update": "window.Map.update",
|
|
1061
|
+
"esnext.math": "window.Math",
|
|
1062
|
+
"esnext.math.acosh": "Math.acosh",
|
|
1063
|
+
"esnext.math.asinh": "Math.asinh",
|
|
1064
|
+
"esnext.math.atanh": "Math.atanh",
|
|
1065
|
+
"esnext.math.cbrt": "Math.cbrt",
|
|
1066
|
+
"esnext.math.clamp": "Math.clamp",
|
|
1067
|
+
"esnext.math.clz32": "Math.clz32",
|
|
1068
|
+
"esnext.math.cosh": "Math.cosh",
|
|
1069
|
+
"esnext.math.deg-per-rad": "Math.DEG_PER_RAD",
|
|
1070
|
+
"esnext.math.degrees": "Math.degrees",
|
|
1071
|
+
"esnext.math.expm1": "Math.expm1",
|
|
1072
|
+
"esnext.math.f16round": "Math.f16round",
|
|
1073
|
+
"esnext.math.fround": "Math.fround",
|
|
1074
|
+
"esnext.math.fscale": "Math.fscale",
|
|
1075
|
+
"esnext.math.hypot": "Math.hypot",
|
|
1076
|
+
"esnext.math.iaddh": "Math.iaddh",
|
|
1077
|
+
"esnext.math.imul": "Math.imul",
|
|
1078
|
+
"esnext.math.imulh": "Math.imulh",
|
|
1079
|
+
"esnext.math.isubh": "Math.isubh",
|
|
1080
|
+
"esnext.math.log10": "Math.log10",
|
|
1081
|
+
"esnext.math.log1p": "Math.log1p",
|
|
1082
|
+
"esnext.math.log2": "Math.log2",
|
|
1083
|
+
"esnext.math.rad-per-deg": "Math.RAD_PER_DEG",
|
|
1084
|
+
"esnext.math.radians": "Math.radians",
|
|
1085
|
+
"esnext.math.scale": "Math.scale",
|
|
1086
|
+
"esnext.math.seeded-prng": "Math.seededPRNG",
|
|
1087
|
+
"esnext.math.sign": "Math.sign",
|
|
1088
|
+
"esnext.math.signbit": "Math.signbit",
|
|
1089
|
+
"esnext.math.sinh": "Math.sinh",
|
|
1090
|
+
"esnext.math.sum-precise": "Math.sumPrecise",
|
|
1091
|
+
"esnext.math.tanh": "Math.tanh",
|
|
1092
|
+
"esnext.math.trunc": "Math.trunc",
|
|
1093
|
+
"esnext.math.umulh": "Math.umulh",
|
|
1094
|
+
"esnext.number": "window.Number",
|
|
1095
|
+
"esnext.number.constructor": "window.Number.constructor",
|
|
1096
|
+
"esnext.number.epsilon": "Number.EPSILON",
|
|
1097
|
+
"esnext.number.from-string": "Number.fromString",
|
|
1098
|
+
"esnext.number.is-finite": "Number.isFinite",
|
|
1099
|
+
"esnext.number.is-integer": "Number.isInteger",
|
|
1100
|
+
"esnext.number.is-nan": "Number.isNaN",
|
|
1101
|
+
"esnext.number.is-safe-integer": "Number.isSafeInteger",
|
|
1102
|
+
"esnext.number.max-safe-integer": "Number.MAX_SAFE_INTEGER",
|
|
1103
|
+
"esnext.number.min-safe-integer": "Number.MIN_SAFE_INTEGER",
|
|
1104
|
+
"esnext.number.parse-float": "Number.parseFloat",
|
|
1105
|
+
"esnext.number.parse-int": "Number.parseInt",
|
|
1106
|
+
"esnext.number.range": "Number.range",
|
|
1107
|
+
"esnext.number.to-exponential": "'toExponential' in window.Number.prototype",
|
|
1108
|
+
"esnext.number.to-fixed": "'toFixed' in window.Number.prototype",
|
|
1109
|
+
"esnext.number.to-precision": "'toPrecision' in window.Number.prototype",
|
|
1110
|
+
"esnext.object": "window.Object",
|
|
1111
|
+
"esnext.object.assign": "Object.assign",
|
|
1112
|
+
"esnext.object.create": "Object.create",
|
|
1113
|
+
"esnext.object.define-getter": "'__defineGetter__' in window.Object.prototype",
|
|
1114
|
+
"esnext.object.define-properties": "Object.defineProperties",
|
|
1115
|
+
"esnext.object.define-property": "Object.defineProperty",
|
|
1116
|
+
"esnext.object.define-setter": "'__defineSetter__' in window.Object.prototype",
|
|
1117
|
+
"esnext.object.entries": "Object.entries",
|
|
1118
|
+
"esnext.object.freeze": "Object.freeze",
|
|
1119
|
+
"esnext.object.from-entries": "Object.fromEntries",
|
|
1120
|
+
"esnext.object.get-own-property-descriptor": "Object.getOwnPropertyDescriptor",
|
|
1121
|
+
"esnext.object.get-own-property-descriptors": "Object.getOwnPropertyDescriptors",
|
|
1122
|
+
"esnext.object.get-own-property-names": "Object.getOwnPropertyNames",
|
|
1123
|
+
"esnext.object.get-prototype-of": "Object.getPrototypeOf",
|
|
1124
|
+
"esnext.object.group-by": "Object.groupBy",
|
|
1125
|
+
"esnext.object.has-own": "Object.hasOwn",
|
|
1126
|
+
"esnext.object.is": "Object.is",
|
|
1127
|
+
"esnext.object.is-extensible": "Object.isExtensible",
|
|
1128
|
+
"esnext.object.is-frozen": "Object.isFrozen",
|
|
1129
|
+
"esnext.object.is-sealed": "Object.isSealed",
|
|
1130
|
+
"esnext.object.keys": "Object.keys",
|
|
1131
|
+
"esnext.object.lookup-getter": "'__lookupGetter__' in window.Object.prototype",
|
|
1132
|
+
"esnext.object.lookup-setter": "'__lookupSetter__' in window.Object.prototype",
|
|
1133
|
+
"esnext.object.prevent-extensions": "Object.preventExtensions",
|
|
1134
|
+
"esnext.object.proto": "'__proto__' in window.Object.prototype",
|
|
1135
|
+
"esnext.object.seal": "Object.seal",
|
|
1136
|
+
"esnext.object.set-prototype-of": "Object.setPrototypeOf",
|
|
1137
|
+
"esnext.object.values": "Object.values",
|
|
1138
|
+
"esnext.observable": "window.Observable",
|
|
1139
|
+
"esnext.parse-float": "window.parseFloat",
|
|
1140
|
+
"esnext.parse-int": "window.parseInt",
|
|
1141
|
+
"esnext.promise": "window.Promise",
|
|
1142
|
+
"esnext.promise.all-settled": "Promise.allSettled",
|
|
1143
|
+
"esnext.promise.any": "Promise.any",
|
|
1144
|
+
"esnext.promise.finally": "'finally' in window.Promise.prototype",
|
|
1145
|
+
"esnext.promise.try": "Promise.try",
|
|
1146
|
+
"esnext.promise.with-resolvers": "Promise.withResolvers",
|
|
1147
|
+
"esnext.reflect-tag": "window.Reflect",
|
|
1148
|
+
"esnext.reflect.apply": "Reflect.apply",
|
|
1149
|
+
"esnext.reflect.construct": "Reflect.construct",
|
|
1150
|
+
"esnext.reflect.define-metadata": "Reflect.defineMetadata",
|
|
1151
|
+
"esnext.reflect.define-property": "Reflect.defineProperty",
|
|
1152
|
+
"esnext.reflect.delete-metadata": "Reflect.deleteMetadata",
|
|
1153
|
+
"esnext.reflect.delete-property": "Reflect.deleteProperty",
|
|
1154
|
+
"esnext.reflect.get": "Reflect.get",
|
|
1155
|
+
"esnext.reflect.get-metadata": "Reflect.getMetadata",
|
|
1156
|
+
"esnext.reflect.get-metadata-keys": "Reflect.getMetadataKeys",
|
|
1157
|
+
"esnext.reflect.get-own-metadata": "Reflect.getOwnMetadata",
|
|
1158
|
+
"esnext.reflect.get-own-metadata-keys": "Reflect.getOwnMetadataKeys",
|
|
1159
|
+
"esnext.reflect.get-own-property-descriptor": "Reflect.getOwnPropertyDescriptor",
|
|
1160
|
+
"esnext.reflect.get-prototype-of": "Reflect.getPrototypeOf",
|
|
1161
|
+
"esnext.reflect.has": "Reflect.has",
|
|
1162
|
+
"esnext.reflect.has-metadata": "Reflect.hasMetadata",
|
|
1163
|
+
"esnext.reflect.has-own-metadata": "Reflect.hasOwnMetadata",
|
|
1164
|
+
"esnext.reflect.is-extensible": "Reflect.isExtensible",
|
|
1165
|
+
"esnext.reflect.metadata": "Reflect.metadata",
|
|
1166
|
+
"esnext.reflect.own-keys": "Reflect.ownKeys",
|
|
1167
|
+
"esnext.reflect.prevent-extensions": "Reflect.preventExtensions",
|
|
1168
|
+
"esnext.reflect.set": "Reflect.set",
|
|
1169
|
+
"esnext.reflect.set-prototype-of": "Reflect.setPrototypeOf",
|
|
1170
|
+
"esnext.regexp": "window.RegExp",
|
|
1171
|
+
"esnext.regexp.constructor": "window.RegExp.constructor",
|
|
1172
|
+
"esnext.regexp.dot-all": "'dotAll' in window.RegExp.prototype",
|
|
1173
|
+
"esnext.regexp.escape": "RegExp.escape",
|
|
1174
|
+
"esnext.regexp.exec": "'exec' in window.RegExp.prototype",
|
|
1175
|
+
"esnext.regexp.flags": "'flags' in window.RegExp.prototype",
|
|
1176
|
+
"esnext.regexp.sticky": "'sticky' in window.RegExp.prototype",
|
|
1177
|
+
"esnext.regexp.test": "'test' in window.RegExp.prototype",
|
|
1178
|
+
"esnext.regexp.to-string": "window.RegExp.toString",
|
|
1179
|
+
"esnext.set": "window.Set",
|
|
1180
|
+
"esnext.set.add-all": "window.Set.addAll",
|
|
1181
|
+
"esnext.set.delete-all": "window.Set.deleteAll",
|
|
1182
|
+
"esnext.set.difference": "window.Set.difference",
|
|
1183
|
+
"esnext.set.every": "window.Set.every",
|
|
1184
|
+
"esnext.set.filter": "window.Set.filter",
|
|
1185
|
+
"esnext.set.find": "window.Set.find",
|
|
1186
|
+
"esnext.set.from": "Set.from",
|
|
1187
|
+
"esnext.set.intersection": "window.Set.intersection",
|
|
1188
|
+
"esnext.set.is-disjoint-from": "window.Set.isDisjointFrom",
|
|
1189
|
+
"esnext.set.is-subset-of": "window.Set.isSubsetOf",
|
|
1190
|
+
"esnext.set.is-superset-of": "window.Set.isSupersetOf",
|
|
1191
|
+
"esnext.set.join": "window.Set.join",
|
|
1192
|
+
"esnext.set.map": "window.Set.map",
|
|
1193
|
+
"esnext.set.of": "Set.of",
|
|
1194
|
+
"esnext.set.reduce": "window.Set.reduce",
|
|
1195
|
+
"esnext.set.some": "window.Set.some",
|
|
1196
|
+
"esnext.set.symmetric-difference": "window.Set.symmetricDifference",
|
|
1197
|
+
"esnext.set.union": "window.Set.union",
|
|
1198
|
+
"esnext.string": "window.String",
|
|
1199
|
+
"esnext.string.anchor": "'anchor' in window.String.prototype",
|
|
1200
|
+
"esnext.string.at": "'at' in window.String.prototype",
|
|
1201
|
+
"esnext.string.big": "'big' in window.String.prototype",
|
|
1202
|
+
"esnext.string.blink": "'blink' in window.String.prototype",
|
|
1203
|
+
"esnext.string.bold": "'bold' in window.String.prototype",
|
|
1204
|
+
"esnext.string.code-point-at": "'codePointAt' in window.String.prototype",
|
|
1205
|
+
"esnext.string.code-points": "'codePoints' in window.String.prototype",
|
|
1206
|
+
"esnext.string.cooked": "String.cooked",
|
|
1207
|
+
"esnext.string.dedent": "String.dedent",
|
|
1208
|
+
"esnext.string.ends-with": "'endsWith' in window.String.prototype",
|
|
1209
|
+
"esnext.string.fixed": "'fixed' in window.String.prototype",
|
|
1210
|
+
"esnext.string.fontcolor": "'fontcolor' in window.String.prototype",
|
|
1211
|
+
"esnext.string.fontsize": "'fontsize' in window.String.prototype",
|
|
1212
|
+
"esnext.string.from-code-point": "String.fromCodePoint",
|
|
1213
|
+
"esnext.string.includes": "'includes' in window.String.prototype",
|
|
1214
|
+
"esnext.string.is-well-formed": "'isWellFormed' in window.String.prototype",
|
|
1215
|
+
"esnext.string.italics": "'italic' in window.String.prototype",
|
|
1216
|
+
"esnext.string.link": "'link' in window.String.prototype",
|
|
1217
|
+
"esnext.string.match": "'match' in window.String.prototype",
|
|
1218
|
+
"esnext.string.match-all": "'matchAll' in window.String.prototype",
|
|
1219
|
+
"esnext.string.pad-end": "'padEnd' in window.String.prototype",
|
|
1220
|
+
"esnext.string.pad-start": "'padStart' in window.String.prototype",
|
|
1221
|
+
"esnext.string.raw": "String.raw",
|
|
1222
|
+
"esnext.string.repeat": "'repeat' in window.String.prototype",
|
|
1223
|
+
"esnext.string.replace": "'replace' in window.String.prototype",
|
|
1224
|
+
"esnext.string.replace-all": "'replaceAll' in window.String.prototype",
|
|
1225
|
+
"esnext.string.search": "'search' in window.String.prototype",
|
|
1226
|
+
"esnext.string.small": "'small' in window.String.prototype",
|
|
1227
|
+
"esnext.string.split": "'split' in window.String.prototype",
|
|
1228
|
+
"esnext.string.starts-with": "'startsWith' in window.String.prototype",
|
|
1229
|
+
"esnext.string.strike": "'strike' in window.String.prototype",
|
|
1230
|
+
"esnext.string.sub": "'sub' in window.String.prototype",
|
|
1231
|
+
"esnext.string.substr": "'substr' in window.String.prototype",
|
|
1232
|
+
"esnext.string.sup": "'sup' in window.String.prototype",
|
|
1233
|
+
"esnext.string.to-well-formed": "'toWellFormed' in window.String.prototype",
|
|
1234
|
+
"esnext.string.trim": "'trim' in window.String.prototype",
|
|
1235
|
+
"esnext.string.trim-end": "'trimEnd' in window.String.prototype",
|
|
1236
|
+
"esnext.string.trim-start": "'trimLeft' in window.String.prototype",
|
|
1237
|
+
"esnext.suppressed-error": "window.SuppressedError",
|
|
1238
|
+
"esnext.suppressed-error.constructor": "window.SuppressedError && window.SuppressedError.constructor",
|
|
1239
|
+
"esnext.symbol": "window.Symbol",
|
|
1240
|
+
"esnext.symbol.async-dispose": "Symbol.asyncDispose",
|
|
1241
|
+
"esnext.symbol.custom-matcher": "Symbol.customMatcher",
|
|
1242
|
+
"esnext.symbol.description": "'description' in window.Symbol.prototype",
|
|
1243
|
+
"esnext.symbol.dispose": "Symbol.dispose",
|
|
1244
|
+
"esnext.symbol.has-instance": "Symbol.hasInstance",
|
|
1245
|
+
"esnext.symbol.is-concat-spreadable": "Symbol.isConcatSpreadable",
|
|
1246
|
+
"esnext.symbol.is-registered": "Symbol.isRegistered",
|
|
1247
|
+
"esnext.symbol.is-registered-symbol": "Symbol.isRegisteredSymbol",
|
|
1248
|
+
"esnext.symbol.is-well-known": "Symbol.isWellKnown",
|
|
1249
|
+
"esnext.symbol.is-well-known-symbol": "Symbol.isWellKnownSymbol",
|
|
1250
|
+
"esnext.symbol.match": "Symbol.match",
|
|
1251
|
+
"esnext.symbol.match-all": "Symbol.matchAll",
|
|
1252
|
+
"esnext.symbol.matcher": "Symbol.matcher",
|
|
1253
|
+
"esnext.symbol.metadata": "Symbol.metadata",
|
|
1254
|
+
"esnext.symbol.metadata-key": "Symbol.metadataKey",
|
|
1255
|
+
"esnext.symbol.observable": "Symbol.observable",
|
|
1256
|
+
"esnext.symbol.pattern-match": "Symbol.patternMatch",
|
|
1257
|
+
"esnext.symbol.replace": "Symbol.replace",
|
|
1258
|
+
"esnext.symbol.search": "Symbol.search",
|
|
1259
|
+
"esnext.symbol.species": "Symbol.species",
|
|
1260
|
+
"esnext.symbol.split": "Symbol.split",
|
|
1261
|
+
"esnext.symbol.to-primitive": "Symbol.toPrimitive",
|
|
1262
|
+
"esnext.symbol.to-string-tag": "Symbol.toStringTag",
|
|
1263
|
+
"esnext.symbol.unscopables": "Symbol.unscopables",
|
|
1264
|
+
"esnext.typed-array": "window.Int8Array",
|
|
1265
|
+
"esnext.typed-array.at": "'at' in window.Int8Array.prototype",
|
|
1266
|
+
"esnext.typed-array.copy-within": "'copyWithin' in window.Int8Array.prototype",
|
|
1267
|
+
"esnext.typed-array.every": "'every' in window.Int8Array.prototype",
|
|
1268
|
+
"esnext.typed-array.fill": "'fill' in window.Int8Array.prototype",
|
|
1269
|
+
"esnext.typed-array.filter": "'filter' in window.Int8Array.prototype",
|
|
1270
|
+
"esnext.typed-array.filter-reject": "window.Int8Array.filterReject",
|
|
1271
|
+
"esnext.typed-array.find": "'find' in window.Int8Array.prototype",
|
|
1272
|
+
"esnext.typed-array.find-index": "'findIndex' in window.Int8Array.prototype",
|
|
1273
|
+
"esnext.typed-array.find-last": "'findLast' in window.Int8Array.prototype",
|
|
1274
|
+
"esnext.typed-array.find-last-index": "'findLastIndex' in window.Int8Array.prototype",
|
|
1275
|
+
"esnext.typed-array.float32-array": "window.Float32Array",
|
|
1276
|
+
"esnext.typed-array.float64-array": "window.Float64Array",
|
|
1277
|
+
"esnext.typed-array.for-each": "'forEach' in window.Int8Array.prototype",
|
|
1278
|
+
"esnext.typed-array.from": "Int8Array.from",
|
|
1279
|
+
"esnext.typed-array.from-async": "Int8Array.fromAsync",
|
|
1280
|
+
"esnext.typed-array.group-by": "window.Int8Array.groupBy",
|
|
1281
|
+
"esnext.typed-array.includes": "'includes' in window.Int8Array.prototype",
|
|
1282
|
+
"esnext.typed-array.index-of": "'indexOf' in window.Int8Array.prototype",
|
|
1283
|
+
"esnext.typed-array.int16-array": "window.Int16Array",
|
|
1284
|
+
"esnext.typed-array.int32-array": "window.Int32Array",
|
|
1285
|
+
"esnext.typed-array.int8-array": "window.Int8Array",
|
|
1286
|
+
"esnext.typed-array.join": "'join' in window.Int8Array.prototype",
|
|
1287
|
+
"esnext.typed-array.last-index-of": "'lastIndexOf' in window.Int8Array.prototype",
|
|
1288
|
+
"esnext.typed-array.map": "'map' in window.Int8Array.prototype",
|
|
1289
|
+
"esnext.typed-array.of": "Int8Array.of",
|
|
1290
|
+
"esnext.typed-array.reduce": "'reduce' in window.Int8Array.prototype",
|
|
1291
|
+
"esnext.typed-array.reduce-right": "'reduceRight' in window.Int8Array.prototype",
|
|
1292
|
+
"esnext.typed-array.reverse": "'reverse' in window.Int8Array.prototype",
|
|
1293
|
+
"esnext.typed-array.set": "'set' in window.Int8Array.prototype",
|
|
1294
|
+
"esnext.typed-array.slice": "'slice' in window.Int8Array.prototype",
|
|
1295
|
+
"esnext.typed-array.some": "'some' in window.Int8Array.prototype",
|
|
1296
|
+
"esnext.typed-array.sort": "'sort' in window.Int8Array.prototype",
|
|
1297
|
+
"esnext.typed-array.subarray": "'subarray' in window.Int8Array.prototype",
|
|
1298
|
+
"esnext.typed-array.to-locale-string": "'toLocaleString' in window.Int8Array.prototype",
|
|
1299
|
+
"esnext.typed-array.to-reversed": "'toReversed' in window.Int8Array.prototype",
|
|
1300
|
+
"esnext.typed-array.to-sorted": "'toSorted' in window.Int8Array.prototype",
|
|
1301
|
+
"esnext.typed-array.to-spliced": "window.Int8Array.toSpliced",
|
|
1302
|
+
"esnext.typed-array.to-string": "'toString' in window.Int8Array.prototype",
|
|
1303
|
+
"esnext.typed-array.uint16-array": "window.Uint16Array",
|
|
1304
|
+
"esnext.typed-array.uint32-array": "window.Uint32Array",
|
|
1305
|
+
"esnext.typed-array.uint8-array": "window.Uint8Array",
|
|
1306
|
+
"esnext.typed-array.uint8-clamped-array": "window.Uint8ClampedArray",
|
|
1307
|
+
"esnext.typed-array.unique-by": "window.Int8Array.uniqueBy",
|
|
1308
|
+
"esnext.typed-array.with": "'with' in window.Int8Array.prototype",
|
|
1309
|
+
"esnext.uint8-array": "window.Uint8Array",
|
|
1310
|
+
"esnext.uint8-array.from-base64": "Uint8Array.fromBase64",
|
|
1311
|
+
"esnext.uint8-array.from-hex": "Uint8Array.fromHex",
|
|
1312
|
+
"esnext.uint8-array.set-from-base64": "window.Uint8Array.setFromBase",
|
|
1313
|
+
"esnext.uint8-array.set-from-hex": "window.Uint8Array.setFromHex",
|
|
1314
|
+
"esnext.uint8-array.to-base64": "window.Uint8Array.toBase",
|
|
1315
|
+
"esnext.uint8-array.to-hex": "window.Uint8Array.toHex",
|
|
1316
|
+
"esnext.unescape": "window.unescape",
|
|
1317
|
+
"esnext.weak-map": "window.WeakMap",
|
|
1318
|
+
"esnext.weak-map.delete-all": "window.WeakMap && 'deleteAll' in window.WeakMap.prototype",
|
|
1319
|
+
"esnext.weak-map.emplace": "window.WeakMap && 'emplace' in window.WeakMap.prototype",
|
|
1320
|
+
"esnext.weak-map.from": "WeakMap.from",
|
|
1321
|
+
"esnext.weak-map.get-or-insert": "window.WeakMap && 'getOrInsert' in window.WeakMap.prototype",
|
|
1322
|
+
"esnext.weak-map.get-or-insert-computed": "window.WeakMap && 'getOrInsertComputed' in window.WeakMap.prototype",
|
|
1323
|
+
"esnext.weak-map.of": "WeakMap.of",
|
|
1324
|
+
"esnext.weak-set": "window.WeakSet",
|
|
1325
|
+
"esnext.weak-set.add-all": "window.WeakSet && 'addAll' in window.WeakSet.prototype",
|
|
1326
|
+
"esnext.weak-set.delete-all": "window.WeakSet && 'deleteAll' in window.WeakSet.prototype",
|
|
1327
|
+
"esnext.weak-set.from": "WeakSet.from",
|
|
1328
|
+
"esnext.weak-set.of": "WeakSet.of",
|
|
1329
|
+
"esnext.web.immediate": "window.setImmediate",
|
|
1330
|
+
"web.atob": "window.atob",
|
|
1331
|
+
"web.btoa": "window.btoa",
|
|
1332
|
+
"web.dom-exception": "window.DOMException",
|
|
1333
|
+
"web.dom-exception.constructor": "window.DOMException.constructor",
|
|
1334
|
+
"web.immediate": "window.setImmediate",
|
|
1335
|
+
"web.queue-microtask": "window.queueMicrotask",
|
|
1336
|
+
"web.self": "window.self",
|
|
1337
|
+
"web.structured-clone": "window.structuredClone",
|
|
1338
|
+
"web.timers": "window.setTimeout",
|
|
1339
|
+
"web.url": "window.URL",
|
|
1340
|
+
"web.url-search-params": "window.URLSearchParams",
|
|
1341
|
+
"web.url-search-params.delete": "'delete' in window.URLSearchParams.prototype",
|
|
1342
|
+
"web.url-search-params.has": "'has' in window.URLSearchParams.prototype",
|
|
1343
|
+
"web.url-search-params.size": "'size' in window.URLSearchParams.prototype",
|
|
1344
|
+
"web.url.can-parse": "URL.canParse",
|
|
1345
|
+
"web.url.parse": "URL.parse",
|
|
1346
|
+
"web.url.to-json": "'toJSON' in window.URL.prototype",
|
|
1347
|
+
}
|
|
1348
|
+
`;
|