unplugin-keywords 2.10.1 → 2.11.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.
@@ -0,0 +1,2745 @@
1
+ import { mkdir, readFile, writeFile } from "node:fs/promises";
2
+ import * as path from "node:path";
3
+ import { globby } from "globby";
4
+ import pLimit from "p-limit";
5
+ import { transformSync, types } from "@babel/core";
6
+ import { createHmac, hkdfSync } from "node:crypto";
7
+ //#region src/internal/constants.ts
8
+ /**
9
+ * @license
10
+ * SPDX-License-Identifier: MIT
11
+ */
12
+ const VIRTUAL_MODULE_ID = "~keywords";
13
+ const VIRTUAL_PUBLIC_MODULE_ID = "~keywords/public";
14
+ const PLUGIN_NAME = "unplugin-keywords";
15
+ //#endregion
16
+ //#region src/internal/encode.ts
17
+ /**
18
+ * @license
19
+ * SPDX-License-Identifier: MIT
20
+ */
21
+ const encodeIdentifier = (identifier) => {
22
+ let encoded = "";
23
+ for (let i = 0; i < identifier.length; i++) {
24
+ const c = identifier[i];
25
+ if (/[a-zA-Z0-9_]/.test(c)) encoded += c;
26
+ else if (c === "$") encoded += "$$";
27
+ else encoded += `$${c.charCodeAt(0).toString(16).padStart(4, "0")}`;
28
+ }
29
+ return encoded;
30
+ };
31
+ const toSafeVarName = (encoded) => `_$${encoded}`;
32
+ //#endregion
33
+ //#region src/internal/transform.ts
34
+ /**
35
+ * @license
36
+ * SPDX-License-Identifier: MIT
37
+ */
38
+ const isPureTypeSpace = (path) => {
39
+ let current = path;
40
+ while (current) {
41
+ const parent = current.parentPath;
42
+ if (!parent) break;
43
+ if (parent.isTSTypeQuery()) return false;
44
+ if ("computed" in parent.node && parent.node.computed) {
45
+ if (current.key === "key" || current.key === "property") return false;
46
+ }
47
+ if (parent.isTSType() || parent.isTSTypeParameterDeclaration() || parent.isTSTypeParameterInstantiation() || parent.isTSClassImplements() || parent.isTSInterfaceHeritage()) return true;
48
+ if (parent.isTSInterfaceDeclaration() || parent.isTSTypeAliasDeclaration() || parent.isTSEnumDeclaration() || parent.isTSModuleDeclaration()) {
49
+ if (current.key === "id") return true;
50
+ }
51
+ if (parent.isTSQualifiedName() || parent.isTSEntityName()) {
52
+ current = current.parentPath;
53
+ continue;
54
+ }
55
+ if (parent.isExpression() || parent.isStatement()) break;
56
+ current = current.parentPath;
57
+ }
58
+ return false;
59
+ };
60
+ const transformPlugin = (mode) => {
61
+ const plugin = {
62
+ name: `${PLUGIN_NAME}:${mode}`,
63
+ visitor: {
64
+ Program: {
65
+ enter(_, state) {
66
+ state.keywords = {
67
+ local: /* @__PURE__ */ new Set(),
68
+ public: /* @__PURE__ */ new Set()
69
+ };
70
+ state.keywordUids = {
71
+ local: /* @__PURE__ */ new Map(),
72
+ public: /* @__PURE__ */ new Map()
73
+ };
74
+ },
75
+ exit(path, state) {
76
+ const metadata = state.file.metadata;
77
+ metadata.keywords = {
78
+ local: Array.from(state.keywords.local),
79
+ public: Array.from(state.keywords.public)
80
+ };
81
+ if (mode === "transform") {
82
+ const newImports = [];
83
+ for (const [keyword, safeId] of state.keywordUids.local.entries()) {
84
+ const encoded = encodeIdentifier(keyword);
85
+ newImports.push(types.importDeclaration([types.importDefaultSpecifier(safeId)], types.stringLiteral(`${VIRTUAL_MODULE_ID}/_/${encoded}`)));
86
+ }
87
+ for (const [keyword, safeId] of state.keywordUids.public.entries()) {
88
+ const encoded = encodeIdentifier(keyword);
89
+ newImports.push(types.importDeclaration([types.importDefaultSpecifier(safeId)], types.stringLiteral(`${VIRTUAL_PUBLIC_MODULE_ID}/_/${encoded}`)));
90
+ }
91
+ if (newImports.length > 0) path.unshiftContainer("body", newImports);
92
+ }
93
+ }
94
+ },
95
+ ImportDeclaration(path, state) {
96
+ const sourceValue = path.node.source.value;
97
+ if (sourceValue !== "~keywords" && sourceValue !== "~keywords/public") return;
98
+ const isPublic = sourceValue === VIRTUAL_PUBLIC_MODULE_ID;
99
+ const targetSet = isPublic ? state.keywords.public : state.keywords.local;
100
+ const targetMap = isPublic ? state.keywordUids.public : state.keywordUids.local;
101
+ const programScope = path.scope.getProgramParent();
102
+ const processKeyword = (keyword) => {
103
+ targetSet.add(keyword);
104
+ if (mode === "extract") return null;
105
+ if (targetMap.has(keyword)) return targetMap.get(keyword);
106
+ const safeName = toSafeVarName(encodeIdentifier(keyword));
107
+ const uid = programScope.generateUidIdentifier(safeName);
108
+ targetMap.set(keyword, uid);
109
+ return uid;
110
+ };
111
+ for (const specifierPath of path.get("specifiers")) {
112
+ const localName = specifierPath.node.local.name;
113
+ const binding = path.scope.getBinding(localName);
114
+ if (!binding) continue;
115
+ if (specifierPath.isImportDefaultSpecifier() || specifierPath.isImportSpecifier()) {
116
+ let keyword;
117
+ if (specifierPath.isImportDefaultSpecifier()) keyword = "default";
118
+ else {
119
+ const imported = specifierPath.node.imported;
120
+ keyword = types.isIdentifier(imported) ? imported.name : imported.value;
121
+ }
122
+ const uidNode = processKeyword(keyword);
123
+ if (!uidNode) continue;
124
+ for (const refPath of binding.referencePaths) {
125
+ if (isPureTypeSpace(refPath)) continue;
126
+ if (refPath.isJSXIdentifier()) refPath.replaceWith(types.jsxIdentifier(uidNode.name));
127
+ else refPath.replaceWith(types.cloneNode(uidNode));
128
+ }
129
+ path.parentPath.traverse({ TSTypeQuery(tsPath) {
130
+ if (types.isIdentifier(tsPath.node.exprName) && tsPath.node.exprName.name === localName && tsPath.scope.getBinding(localName) === binding) tsPath.get("exprName").replaceWith(types.cloneNode(uidNode));
131
+ } });
132
+ } else if (specifierPath.isImportNamespaceSpecifier()) {
133
+ for (const refPath of binding.referencePaths) {
134
+ if (isPureTypeSpace(refPath)) continue;
135
+ const parentPath = refPath.parentPath;
136
+ if (!parentPath) continue;
137
+ if (parentPath.isMemberExpression() && parentPath.node.object === refPath.node) {
138
+ const propNode = parentPath.node.property;
139
+ let keyword;
140
+ if (!parentPath.node.computed && types.isIdentifier(propNode)) keyword = propNode.name;
141
+ else if (parentPath.node.computed && types.isStringLiteral(propNode)) keyword = propNode.value;
142
+ if (keyword) {
143
+ const uidNode = processKeyword(keyword);
144
+ if (uidNode) parentPath.replaceWith(types.cloneNode(uidNode));
145
+ }
146
+ } else if (parentPath.isJSXMemberExpression() && parentPath.node.object === refPath.node) {
147
+ const keyword = parentPath.node.property.name;
148
+ const uidNode = processKeyword(keyword);
149
+ if (uidNode) parentPath.replaceWith(types.jsxIdentifier(uidNode.name));
150
+ }
151
+ }
152
+ path.parentPath.traverse({
153
+ TSTypeQuery(tsPath) {
154
+ const expr = tsPath.node.exprName;
155
+ if (types.isTSQualifiedName(expr) && types.isIdentifier(expr.left) && expr.left.name === localName && tsPath.scope.getBinding(localName) === binding) {
156
+ const keyword = expr.right.name;
157
+ const uidNode = processKeyword(keyword);
158
+ if (uidNode) tsPath.get("exprName").replaceWith(types.cloneNode(uidNode));
159
+ }
160
+ },
161
+ TSIndexedAccessType(tsPath) {
162
+ const objPath = tsPath.get("objectType");
163
+ if (objPath.isTSTypeQuery() && types.isIdentifier(objPath.node.exprName) && objPath.node.exprName.name === localName && tsPath.scope.getBinding(localName) === binding) {
164
+ const indexNode = tsPath.node.indexType;
165
+ if (types.isTSLiteralType(indexNode) && types.isStringLiteral(indexNode.literal)) {
166
+ const keyword = indexNode.literal.value;
167
+ const uidNode = processKeyword(keyword);
168
+ if (uidNode) tsPath.replaceWith(types.tsTypeQuery(types.cloneNode(uidNode)));
169
+ }
170
+ }
171
+ }
172
+ });
173
+ }
174
+ }
175
+ if (mode === "transform") path.remove();
176
+ },
177
+ ExportNamedDeclaration(path, state) {
178
+ const sourceValue = path.node.source?.value;
179
+ if (sourceValue !== "~keywords" && sourceValue !== "~keywords/public") return;
180
+ const targetSet = sourceValue === "~keywords/public" ? state.keywords.public : state.keywords.local;
181
+ if (mode === "extract") {
182
+ for (const specifierPath of path.get("specifiers")) if (specifierPath.isExportSpecifier()) {
183
+ const local = specifierPath.node.local;
184
+ const keyword = types.isIdentifier(local) ? local.name : local.value;
185
+ targetSet.add(keyword);
186
+ }
187
+ return;
188
+ }
189
+ const newExports = path.get("specifiers").map((specifierPath) => {
190
+ if (specifierPath.isExportSpecifier()) {
191
+ const local = specifierPath.node.local;
192
+ const keyword = types.isIdentifier(local) ? local.name : local.value;
193
+ targetSet.add(keyword);
194
+ const encoded = encodeIdentifier(keyword);
195
+ return types.exportNamedDeclaration(null, [types.exportSpecifier(types.identifier("default"), specifierPath.node.exported)], types.stringLiteral(`${sourceValue}/_/${encoded}`));
196
+ }
197
+ return null;
198
+ }).filter((node) => node !== null);
199
+ if (newExports.length > 0) path.replaceWithMultiple(newExports);
200
+ else path.remove();
201
+ }
202
+ }
203
+ };
204
+ return () => plugin;
205
+ };
206
+ const transformCode = (code, id) => {
207
+ if (!code.includes("~keywords") && !code.includes("~keywords/public")) return null;
208
+ const result = transformSync(code, {
209
+ babelrc: false,
210
+ configFile: false,
211
+ filename: id,
212
+ sourceMaps: true,
213
+ ast: false,
214
+ plugins: [transformPlugin("transform")],
215
+ parserOpts: { plugins: ["jsx", "typescript"] }
216
+ });
217
+ if (!result) return null;
218
+ const metadata = result.metadata;
219
+ const keywords = {
220
+ local: new Set(metadata?.keywords?.local ?? []),
221
+ public: new Set(metadata?.keywords?.public ?? [])
222
+ };
223
+ return {
224
+ code: result.code ?? "",
225
+ map: result.map ?? null,
226
+ keywords
227
+ };
228
+ };
229
+ const extractKeywords = (code) => {
230
+ if (!code.includes("~keywords") && !code.includes("~keywords/public")) return null;
231
+ let result;
232
+ try {
233
+ result = transformSync(code, {
234
+ babelrc: false,
235
+ configFile: false,
236
+ sourceMaps: false,
237
+ ast: false,
238
+ code: false,
239
+ plugins: [transformPlugin("extract")],
240
+ parserOpts: {
241
+ plugins: ["jsx", "typescript"],
242
+ errorRecovery: true
243
+ }
244
+ });
245
+ } catch {
246
+ return null;
247
+ }
248
+ if (!result) return null;
249
+ const metadata = result.metadata;
250
+ return {
251
+ local: new Set(metadata?.keywords?.local ?? []),
252
+ public: new Set(metadata?.keywords?.public ?? [])
253
+ };
254
+ };
255
+ //#endregion
256
+ //#region src/internal/typegen.ts
257
+ /**
258
+ * @license
259
+ * SPDX-License-Identifier: MIT
260
+ */
261
+ const generateTypeDeclaration = (keywords, isPublic = false) => {
262
+ const sortedKeywords = Array.from(keywords).sort();
263
+ const content = [];
264
+ for (const keyword of sortedKeywords) {
265
+ const safeName = toSafeVarName(encodeIdentifier(keyword));
266
+ const value = `${isPublic ? "*".repeat(7) : "=="}.${keyword}`;
267
+ content.push(`declare const ${safeName}: ${JSON.stringify(value)};`);
268
+ }
269
+ content.push("");
270
+ content.push("export {");
271
+ for (const keyword of sortedKeywords) {
272
+ const safeName = toSafeVarName(encodeIdentifier(keyword));
273
+ content.push(` ${safeName} as ${JSON.stringify(keyword)},`);
274
+ }
275
+ content.push("};");
276
+ content.push("");
277
+ return content.join("\n");
278
+ };
279
+ //#endregion
280
+ //#region src/internal/cli.ts
281
+ /**
282
+ * @license
283
+ * SPDX-License-Identifier: MIT
284
+ */
285
+ const collectKeywordsFromRoot = async (root, silent, ignoredDirs = [], concurrency = 100) => {
286
+ const collectedKeywords = {
287
+ local: /* @__PURE__ */ new Set(),
288
+ public: /* @__PURE__ */ new Set()
289
+ };
290
+ const start = performance.now();
291
+ if (!silent) console.error("Scanning project files for keywords...");
292
+ const files = await globby("**/*.{js,ts,mjs,mts,jsx,tsx,mjsx,mtsx}", {
293
+ cwd: root,
294
+ absolute: false,
295
+ ignore: ["**/node_modules/**", ...ignoredDirs.map((dir) => `${dir}/**`)],
296
+ gitignore: true
297
+ });
298
+ let processed = 0;
299
+ await pLimit({ concurrency }).map(files, async (file) => {
300
+ try {
301
+ const keywords = extractKeywords(await readFile(file, "utf-8"));
302
+ if (!keywords) return;
303
+ for (const keyword of keywords.local) collectedKeywords.local.add(keyword);
304
+ for (const keyword of keywords.public) collectedKeywords.public.add(keyword);
305
+ processed++;
306
+ } catch (error) {
307
+ if (!silent) console.error(`Failed to process ${file}: ${error}`);
308
+ }
309
+ });
310
+ const elapsed = performance.now() - start;
311
+ if (!silent) console.error(`Scan complete: ${processed}/${files.length} files, ${collectedKeywords.local.size} local, ${collectedKeywords.public.size} public keywords (${elapsed.toFixed(2)}ms).`);
312
+ return collectedKeywords;
313
+ };
314
+ const pkgJson = {
315
+ private: true,
316
+ type: "module",
317
+ sideEffects: false,
318
+ exports: {
319
+ ".": { types: "./index.d.ts" },
320
+ "./public": { types: "./public.d.ts" },
321
+ [`./_/*`]: `./_/*`,
322
+ [`./public/_/*`]: `./public/_/*`
323
+ }
324
+ };
325
+ const createRunner = (options) => {
326
+ const { root = process.cwd(), silent = false, outDir = path.join("node_modules", "~keywords") } = options ?? {};
327
+ return {
328
+ async collect() {
329
+ return collectKeywordsFromRoot(root, silent);
330
+ },
331
+ async save(keywords) {
332
+ const content = generateTypeDeclaration(keywords.local);
333
+ const publicContent = generateTypeDeclaration(keywords.public, true);
334
+ const outPath = path.join(root, outDir);
335
+ await mkdir(outPath, { recursive: true });
336
+ await writeFile(path.join(outPath, "index.d.ts"), `${content.trim()}\n`);
337
+ await writeFile(path.join(outPath, "public.d.ts"), `${publicContent.trim()}\n`);
338
+ await writeFile(path.join(outPath, "package.json"), `${JSON.stringify(pkgJson, null, 2)}\n`);
339
+ },
340
+ async run() {
341
+ const keywords = await this.collect();
342
+ await this.save(keywords);
343
+ }
344
+ };
345
+ };
346
+ //#endregion
347
+ //#region \0virtual:virtual:blacklist
348
+ var _virtual_virtual_blacklist_default = new Set([
349
+ "$",
350
+ "$$",
351
+ "$0",
352
+ "$1",
353
+ "$2",
354
+ "$3",
355
+ "$4",
356
+ "$A",
357
+ "$F",
358
+ "$H",
359
+ "$R",
360
+ "$_",
361
+ "$bindable",
362
+ "$break",
363
+ "$continue",
364
+ "$derived",
365
+ "$effect",
366
+ "$host",
367
+ "$inspect",
368
+ "$props",
369
+ "$state",
370
+ "$w",
371
+ "$x",
372
+ "@@asyncDispose",
373
+ "@@asyncIterator",
374
+ "@@dispose",
375
+ "@@hasInstance",
376
+ "@@iterator",
377
+ "@@match",
378
+ "@@matchAll",
379
+ "@@replace",
380
+ "@@search",
381
+ "@@species",
382
+ "@@split",
383
+ "@@toPrimitive",
384
+ "@@unscopables",
385
+ "AI",
386
+ "AICreateMonitor",
387
+ "AITextSession",
388
+ "AbortController",
389
+ "AbortPaymentEvent",
390
+ "AbortSignal",
391
+ "AbsoluteOrientationSensor",
392
+ "Abstract",
393
+ "AbstractRange",
394
+ "Accelerometer",
395
+ "Accounts",
396
+ "AccountsClient",
397
+ "AccountsCommon",
398
+ "AccountsServer",
399
+ "ActiveXObject",
400
+ "AggregateError",
401
+ "Ajax",
402
+ "AnalyserNode",
403
+ "Animation",
404
+ "AnimationEffect",
405
+ "AnimationEvent",
406
+ "AnimationPlaybackEvent",
407
+ "AnimationTimeline",
408
+ "App",
409
+ "Application",
410
+ "Array",
411
+ "ArrayBuffer",
412
+ "Assets",
413
+ "Astro",
414
+ "AsyncDisposableStack",
415
+ "AsyncFunction",
416
+ "AsyncGenerator",
417
+ "AsyncGeneratorFunction",
418
+ "AsyncIterator",
419
+ "Atomic_operations_on_non_shared_buffers",
420
+ "Atomics",
421
+ "Attr",
422
+ "Audio",
423
+ "AudioBuffer",
424
+ "AudioBufferSourceNode",
425
+ "AudioContext",
426
+ "AudioData",
427
+ "AudioDecoder",
428
+ "AudioDestinationNode",
429
+ "AudioEncoder",
430
+ "AudioListener",
431
+ "AudioNode",
432
+ "AudioParam",
433
+ "AudioParamMap",
434
+ "AudioPlaybackStats",
435
+ "AudioProcessingEvent",
436
+ "AudioScheduledSourceNode",
437
+ "AudioSinkInfo",
438
+ "AudioWorklet",
439
+ "AudioWorkletGlobalScope",
440
+ "AudioWorkletNode",
441
+ "AudioWorkletProcessor",
442
+ "AuthenticatorAssertionResponse",
443
+ "AuthenticatorAttestationResponse",
444
+ "AuthenticatorResponse",
445
+ "Autocompleter",
446
+ "Automation",
447
+ "BYTES_PER_ELEMENT",
448
+ "BackgroundFetchEvent",
449
+ "BackgroundFetchManager",
450
+ "BackgroundFetchRecord",
451
+ "BackgroundFetchRegistration",
452
+ "BackgroundFetchUpdateUIEvent",
453
+ "BarProp",
454
+ "BarcodeDetector",
455
+ "BaseAudioContext",
456
+ "BatteryManager",
457
+ "BeforeUnloadEvent",
458
+ "BigInt",
459
+ "BigInt64Array",
460
+ "BigUint64Array",
461
+ "BiquadFilterNode",
462
+ "Blaze",
463
+ "Blob",
464
+ "BlobEvent",
465
+ "Bluetooth",
466
+ "BluetoothCharacteristicProperties",
467
+ "BluetoothDevice",
468
+ "BluetoothRemoteGATTCharacteristic",
469
+ "BluetoothRemoteGATTDescriptor",
470
+ "BluetoothRemoteGATTServer",
471
+ "BluetoothRemoteGATTService",
472
+ "BluetoothUUID",
473
+ "Boolean",
474
+ "BroadcastChannel",
475
+ "BrowserCaptureMediaStreamTrack",
476
+ "Buffer",
477
+ "BuildError",
478
+ "BuildMessage",
479
+ "Builder",
480
+ "BulkWriteResult",
481
+ "Bun",
482
+ "By",
483
+ "ByteLengthQueuingStrategy",
484
+ "CDATASection",
485
+ "CSPViolationReportBody",
486
+ "CSS",
487
+ "CSSAnimation",
488
+ "CSSConditionRule",
489
+ "CSSContainerRule",
490
+ "CSSCounterStyleRule",
491
+ "CSSFontFaceRule",
492
+ "CSSFontFeatureValuesRule",
493
+ "CSSFontPaletteValuesRule",
494
+ "CSSFunctionDeclarations",
495
+ "CSSFunctionDescriptors",
496
+ "CSSFunctionRule",
497
+ "CSSGroupingRule",
498
+ "CSSImageValue",
499
+ "CSSImportRule",
500
+ "CSSKeyframeRule",
501
+ "CSSKeyframesRule",
502
+ "CSSKeywordValue",
503
+ "CSSLayerBlockRule",
504
+ "CSSLayerStatementRule",
505
+ "CSSMarginRule",
506
+ "CSSMathClamp",
507
+ "CSSMathInvert",
508
+ "CSSMathMax",
509
+ "CSSMathMin",
510
+ "CSSMathNegate",
511
+ "CSSMathProduct",
512
+ "CSSMathSum",
513
+ "CSSMathValue",
514
+ "CSSMatrixComponent",
515
+ "CSSMediaRule",
516
+ "CSSNamespaceRule",
517
+ "CSSNestedDeclarations",
518
+ "CSSNumericArray",
519
+ "CSSNumericValue",
520
+ "CSSPageDescriptors",
521
+ "CSSPageRule",
522
+ "CSSPerspective",
523
+ "CSSPositionTryDescriptors",
524
+ "CSSPositionTryRule",
525
+ "CSSPositionValue",
526
+ "CSSPropertyRule",
527
+ "CSSRotate",
528
+ "CSSRule",
529
+ "CSSRuleList",
530
+ "CSSScale",
531
+ "CSSScopeRule",
532
+ "CSSSkew",
533
+ "CSSSkewX",
534
+ "CSSSkewY",
535
+ "CSSStartingStyleRule",
536
+ "CSSStyleDeclaration",
537
+ "CSSStyleProperties",
538
+ "CSSStyleRule",
539
+ "CSSStyleSheet",
540
+ "CSSStyleValue",
541
+ "CSSSupportsRule",
542
+ "CSSTransformComponent",
543
+ "CSSTransformValue",
544
+ "CSSTransition",
545
+ "CSSTranslate",
546
+ "CSSUnitValue",
547
+ "CSSUnparsedValue",
548
+ "CSSVariableReferenceValue",
549
+ "CSSViewTransitionRule",
550
+ "Cache",
551
+ "CacheStorage",
552
+ "CanMakePaymentEvent",
553
+ "CanvasCaptureMediaStream",
554
+ "CanvasCaptureMediaStreamTrack",
555
+ "CanvasGradient",
556
+ "CanvasPattern",
557
+ "CanvasRenderingContext2D",
558
+ "CaptureController",
559
+ "CaretPosition",
560
+ "ChannelMergerNode",
561
+ "ChannelSplitterNode",
562
+ "ChapterInformation",
563
+ "CharacterBoundsUpdateEvent",
564
+ "CharacterData",
565
+ "Class",
566
+ "Client",
567
+ "Clients",
568
+ "Clipboard",
569
+ "ClipboardChangeEvent",
570
+ "ClipboardEvent",
571
+ "ClipboardItem",
572
+ "CloseEvent",
573
+ "CloseWatcher",
574
+ "Collator",
575
+ "CollectGarbage",
576
+ "CommandEvent",
577
+ "Comment",
578
+ "CompositionEvent",
579
+ "CompressionStream",
580
+ "ConstantSourceNode",
581
+ "ContentVisibilityAutoStateChangeEvent",
582
+ "Control",
583
+ "ConvolverNode",
584
+ "CookieChangeEvent",
585
+ "CookieDeprecationLabel",
586
+ "CookieStore",
587
+ "CookieStoreManager",
588
+ "Cordova",
589
+ "CountQueuingStrategy",
590
+ "CrashReportContext",
591
+ "CreateMonitor",
592
+ "Credential",
593
+ "CredentialsContainer",
594
+ "CropTarget",
595
+ "Crypto",
596
+ "CryptoKey",
597
+ "CustomElementRegistry",
598
+ "CustomEvent",
599
+ "CustomStateSet",
600
+ "DDP",
601
+ "DDPRateLimiter",
602
+ "DDPServer",
603
+ "DOMError",
604
+ "DOMException",
605
+ "DOMImplementation",
606
+ "DOMMatrix",
607
+ "DOMMatrixReadOnly",
608
+ "DOMParser",
609
+ "DOMPoint",
610
+ "DOMPointReadOnly",
611
+ "DOMQuad",
612
+ "DOMRect",
613
+ "DOMRectList",
614
+ "DOMRectReadOnly",
615
+ "DOMStringList",
616
+ "DOMStringMap",
617
+ "DOMTokenList",
618
+ "DartObject",
619
+ "DataTransfer",
620
+ "DataTransferItem",
621
+ "DataTransferItemList",
622
+ "DataView",
623
+ "Date",
624
+ "DateTimeFormat",
625
+ "Debug",
626
+ "DecompressionStream",
627
+ "DedicatedWorkerGlobalScope",
628
+ "DelayNode",
629
+ "DelegatedInkTrailPresenter",
630
+ "Deno",
631
+ "Deps",
632
+ "DeviceMotionEvent",
633
+ "DeviceMotionEventAcceleration",
634
+ "DeviceMotionEventRotationRate",
635
+ "DeviceOrientationEvent",
636
+ "DevicePosture",
637
+ "DigitalCredential",
638
+ "DisplayNames",
639
+ "DisposableStack",
640
+ "Document",
641
+ "DocumentFragment",
642
+ "DocumentPictureInPicture",
643
+ "DocumentPictureInPictureEvent",
644
+ "DocumentTimeline",
645
+ "DocumentType",
646
+ "DragEvent",
647
+ "Draggable",
648
+ "Draggables",
649
+ "Droppables",
650
+ "Duration",
651
+ "DurationFormat",
652
+ "DynamicsCompressorNode",
653
+ "E",
654
+ "EJSON",
655
+ "EPSILON",
656
+ "ES2015_behavior",
657
+ "EditContext",
658
+ "Effect",
659
+ "Element",
660
+ "ElementInternals",
661
+ "Email",
662
+ "EncodedAudioChunk",
663
+ "EncodedVideoChunk",
664
+ "Enumerable",
665
+ "Enumerator",
666
+ "Error",
667
+ "ErrorEvent",
668
+ "EvalError",
669
+ "Event",
670
+ "EventCounts",
671
+ "EventSource",
672
+ "EventTarget",
673
+ "ExtendableCookieChangeEvent",
674
+ "ExtendableEvent",
675
+ "ExtendableMessageEvent",
676
+ "External",
677
+ "EyeDropper",
678
+ "FeaturePolicy",
679
+ "FederatedCredential",
680
+ "Fence",
681
+ "FencedFrameConfig",
682
+ "FetchEvent",
683
+ "FetchLaterResult",
684
+ "Field",
685
+ "File",
686
+ "FileList",
687
+ "FileReader",
688
+ "FileReaderSync",
689
+ "FileSystem",
690
+ "FileSystemDirectoryEntry",
691
+ "FileSystemDirectoryHandle",
692
+ "FileSystemDirectoryReader",
693
+ "FileSystemEntry",
694
+ "FileSystemFileEntry",
695
+ "FileSystemFileHandle",
696
+ "FileSystemHandle",
697
+ "FileSystemObserver",
698
+ "FileSystemSyncAccessHandle",
699
+ "FileSystemWritableFileStream",
700
+ "FinalizationRegistry",
701
+ "Float16Array",
702
+ "Float32Array",
703
+ "Float64Array",
704
+ "FocusEvent",
705
+ "FontData",
706
+ "FontFace",
707
+ "FontFaceSet",
708
+ "FontFaceSetLoadEvent",
709
+ "Form",
710
+ "FormData",
711
+ "FormDataEvent",
712
+ "FragmentDirective",
713
+ "Function",
714
+ "GM",
715
+ "GM_addElement",
716
+ "GM_addStyle",
717
+ "GM_addValueChangeListener",
718
+ "GM_deleteValue",
719
+ "GM_deleteValues",
720
+ "GM_download",
721
+ "GM_getResourceText",
722
+ "GM_getResourceURL",
723
+ "GM_getTab",
724
+ "GM_getTabs",
725
+ "GM_getValue",
726
+ "GM_getValues",
727
+ "GM_info",
728
+ "GM_listValues",
729
+ "GM_log",
730
+ "GM_notification",
731
+ "GM_openInTab",
732
+ "GM_registerMenuCommand",
733
+ "GM_removeValueChangeListener",
734
+ "GM_saveTab",
735
+ "GM_setClipboard",
736
+ "GM_setValue",
737
+ "GM_setValues",
738
+ "GM_unregisterMenuCommand",
739
+ "GM_xmlhttpRequest",
740
+ "GPU",
741
+ "GPUAdapter",
742
+ "GPUAdapterInfo",
743
+ "GPUBindGroup",
744
+ "GPUBindGroupLayout",
745
+ "GPUBuffer",
746
+ "GPUBufferUsage",
747
+ "GPUCanvasContext",
748
+ "GPUColorWrite",
749
+ "GPUCommandBuffer",
750
+ "GPUCommandEncoder",
751
+ "GPUCompilationInfo",
752
+ "GPUCompilationMessage",
753
+ "GPUComputePassEncoder",
754
+ "GPUComputePipeline",
755
+ "GPUDevice",
756
+ "GPUDeviceLostInfo",
757
+ "GPUError",
758
+ "GPUExternalTexture",
759
+ "GPUInternalError",
760
+ "GPUMapMode",
761
+ "GPUOutOfMemoryError",
762
+ "GPUPipelineError",
763
+ "GPUPipelineLayout",
764
+ "GPUQuerySet",
765
+ "GPUQueue",
766
+ "GPURenderBundle",
767
+ "GPURenderBundleEncoder",
768
+ "GPURenderPassEncoder",
769
+ "GPURenderPipeline",
770
+ "GPUSampler",
771
+ "GPUShaderModule",
772
+ "GPUShaderStage",
773
+ "GPUSupportedFeatures",
774
+ "GPUSupportedLimits",
775
+ "GPUTexture",
776
+ "GPUTextureUsage",
777
+ "GPUTextureView",
778
+ "GPUUncapturedErrorEvent",
779
+ "GPUValidationError",
780
+ "GainNode",
781
+ "Gamepad",
782
+ "GamepadAxisMoveEvent",
783
+ "GamepadButton",
784
+ "GamepadButtonEvent",
785
+ "GamepadEvent",
786
+ "GamepadHapticActuator",
787
+ "GamepadPose",
788
+ "Generator",
789
+ "GeneratorFunction",
790
+ "Geolocation",
791
+ "GeolocationCoordinates",
792
+ "GeolocationPosition",
793
+ "GeolocationPositionError",
794
+ "GetObject",
795
+ "GravitySensor",
796
+ "Gyroscope",
797
+ "HID",
798
+ "HIDConnectionEvent",
799
+ "HIDDevice",
800
+ "HIDInputReportEvent",
801
+ "HTMLAllCollection",
802
+ "HTMLAnchorElement",
803
+ "HTMLAreaElement",
804
+ "HTMLAudioElement",
805
+ "HTMLBRElement",
806
+ "HTMLBaseElement",
807
+ "HTMLBodyElement",
808
+ "HTMLButtonElement",
809
+ "HTMLCanvasElement",
810
+ "HTMLCollection",
811
+ "HTMLDListElement",
812
+ "HTMLDataElement",
813
+ "HTMLDataListElement",
814
+ "HTMLDetailsElement",
815
+ "HTMLDialogElement",
816
+ "HTMLDirectoryElement",
817
+ "HTMLDivElement",
818
+ "HTMLDocument",
819
+ "HTMLElement",
820
+ "HTMLEmbedElement",
821
+ "HTMLFencedFrameElement",
822
+ "HTMLFieldSetElement",
823
+ "HTMLFontElement",
824
+ "HTMLFormControlsCollection",
825
+ "HTMLFormElement",
826
+ "HTMLFrameElement",
827
+ "HTMLFrameSetElement",
828
+ "HTMLGeolocationElement",
829
+ "HTMLHRElement",
830
+ "HTMLHeadElement",
831
+ "HTMLHeadingElement",
832
+ "HTMLHtmlElement",
833
+ "HTMLIFrameElement",
834
+ "HTMLImageElement",
835
+ "HTMLInputElement",
836
+ "HTMLLIElement",
837
+ "HTMLLabelElement",
838
+ "HTMLLegendElement",
839
+ "HTMLLinkElement",
840
+ "HTMLMapElement",
841
+ "HTMLMarqueeElement",
842
+ "HTMLMediaElement",
843
+ "HTMLMenuElement",
844
+ "HTMLMetaElement",
845
+ "HTMLMeterElement",
846
+ "HTMLModElement",
847
+ "HTMLOListElement",
848
+ "HTMLObjectElement",
849
+ "HTMLOptGroupElement",
850
+ "HTMLOptionElement",
851
+ "HTMLOptionsCollection",
852
+ "HTMLOutputElement",
853
+ "HTMLParagraphElement",
854
+ "HTMLParamElement",
855
+ "HTMLPictureElement",
856
+ "HTMLPreElement",
857
+ "HTMLProgressElement",
858
+ "HTMLQuoteElement",
859
+ "HTMLRewriter",
860
+ "HTMLScriptElement",
861
+ "HTMLSelectElement",
862
+ "HTMLSelectedContentElement",
863
+ "HTMLSlotElement",
864
+ "HTMLSourceElement",
865
+ "HTMLSpanElement",
866
+ "HTMLStyleElement",
867
+ "HTMLTableCaptionElement",
868
+ "HTMLTableCellElement",
869
+ "HTMLTableColElement",
870
+ "HTMLTableElement",
871
+ "HTMLTableRowElement",
872
+ "HTMLTableSectionElement",
873
+ "HTMLTemplateElement",
874
+ "HTMLTextAreaElement",
875
+ "HTMLTimeElement",
876
+ "HTMLTitleElement",
877
+ "HTMLTrackElement",
878
+ "HTMLUListElement",
879
+ "HTMLUnknownElement",
880
+ "HTMLVideoElement",
881
+ "HTTP",
882
+ "Hash",
883
+ "HashChangeEvent",
884
+ "Headers",
885
+ "Highlight",
886
+ "HighlightRegistry",
887
+ "History",
888
+ "IDBCursor",
889
+ "IDBCursorWithValue",
890
+ "IDBDatabase",
891
+ "IDBFactory",
892
+ "IDBIndex",
893
+ "IDBKeyRange",
894
+ "IDBObjectStore",
895
+ "IDBOpenDBRequest",
896
+ "IDBRecord",
897
+ "IDBRequest",
898
+ "IDBTransaction",
899
+ "IDBVersionChangeEvent",
900
+ "IIRFilterNode",
901
+ "ISODate",
902
+ "IdentityCredential",
903
+ "IdentityCredentialError",
904
+ "IdentityProvider",
905
+ "IdleDeadline",
906
+ "IdleDetector",
907
+ "Image",
908
+ "ImageBitmap",
909
+ "ImageBitmapRenderingContext",
910
+ "ImageCapture",
911
+ "ImageData",
912
+ "ImageDecoder",
913
+ "ImageTrack",
914
+ "ImageTrackList",
915
+ "Infinity",
916
+ "Ink",
917
+ "InputDeviceCapabilities",
918
+ "InputDeviceInfo",
919
+ "InputEvent",
920
+ "Insertion",
921
+ "InstallEvent",
922
+ "Instant",
923
+ "Int16Array",
924
+ "Int32Array",
925
+ "Int8Array",
926
+ "IntegrityViolationReportBody",
927
+ "InterestEvent",
928
+ "InternalError",
929
+ "IntersectionObserver",
930
+ "IntersectionObserverEntry",
931
+ "Intl",
932
+ "IntlLegacyConstructedSymbol",
933
+ "Iterator",
934
+ "JSAdapter",
935
+ "JSON",
936
+ "Java",
937
+ "JavaImporter",
938
+ "Keyboard",
939
+ "KeyboardEvent",
940
+ "KeyboardLayoutMap",
941
+ "KeyframeEffect",
942
+ "LN10",
943
+ "LN2",
944
+ "LOG10E",
945
+ "LOG2E",
946
+ "LanguageDetector",
947
+ "LargestContentfulPaint",
948
+ "LaunchParams",
949
+ "LaunchQueue",
950
+ "LayoutShift",
951
+ "LayoutShiftAttribution",
952
+ "Library",
953
+ "LinearAccelerationSensor",
954
+ "ListFormat",
955
+ "Loader",
956
+ "Locale",
957
+ "Location",
958
+ "Lock",
959
+ "LockManager",
960
+ "Log",
961
+ "MAX_SAFE_INTEGER",
962
+ "MAX_VALUE",
963
+ "MIDIAccess",
964
+ "MIDIConnectionEvent",
965
+ "MIDIInput",
966
+ "MIDIInputMap",
967
+ "MIDIMessageEvent",
968
+ "MIDIOutput",
969
+ "MIDIOutputMap",
970
+ "MIDIPort",
971
+ "MIN_SAFE_INTEGER",
972
+ "MIN_VALUE",
973
+ "Map",
974
+ "Match",
975
+ "Math",
976
+ "MathMLElement",
977
+ "MediaCapabilities",
978
+ "MediaCapabilitiesInfo",
979
+ "MediaDeviceInfo",
980
+ "MediaDevices",
981
+ "MediaElementAudioSourceNode",
982
+ "MediaEncryptedEvent",
983
+ "MediaError",
984
+ "MediaKeyError",
985
+ "MediaKeyMessageEvent",
986
+ "MediaKeySession",
987
+ "MediaKeyStatusMap",
988
+ "MediaKeySystemAccess",
989
+ "MediaKeys",
990
+ "MediaList",
991
+ "MediaMetadata",
992
+ "MediaQueryList",
993
+ "MediaQueryListEvent",
994
+ "MediaRecorder",
995
+ "MediaRecorderErrorEvent",
996
+ "MediaSession",
997
+ "MediaSource",
998
+ "MediaSourceHandle",
999
+ "MediaStream",
1000
+ "MediaStreamAudioDestinationNode",
1001
+ "MediaStreamAudioSourceNode",
1002
+ "MediaStreamEvent",
1003
+ "MediaStreamTrack",
1004
+ "MediaStreamTrackAudioSourceNode",
1005
+ "MediaStreamTrackAudioStats",
1006
+ "MediaStreamTrackEvent",
1007
+ "MediaStreamTrackGenerator",
1008
+ "MediaStreamTrackProcessor",
1009
+ "MediaStreamTrackVideoStats",
1010
+ "MessageChannel",
1011
+ "MessageEvent",
1012
+ "MessagePort",
1013
+ "Meteor",
1014
+ "MimeType",
1015
+ "MimeTypeArray",
1016
+ "ModelGenericSession",
1017
+ "ModelManager",
1018
+ "Mongo",
1019
+ "MongoInternals",
1020
+ "MouseEvent",
1021
+ "MutationEvent",
1022
+ "MutationObserver",
1023
+ "MutationRecord",
1024
+ "NEGATIVE_INFINITY",
1025
+ "NaN",
1026
+ "NamedNodeMap",
1027
+ "NavigateEvent",
1028
+ "Navigation",
1029
+ "NavigationActivation",
1030
+ "NavigationCurrentEntryChangeEvent",
1031
+ "NavigationDestination",
1032
+ "NavigationHistoryEntry",
1033
+ "NavigationPrecommitController",
1034
+ "NavigationPreloadManager",
1035
+ "NavigationTransition",
1036
+ "Navigator",
1037
+ "NavigatorLogin",
1038
+ "NavigatorManagedData",
1039
+ "NavigatorUAData",
1040
+ "NetworkInformation",
1041
+ "Node",
1042
+ "NodeFilter",
1043
+ "NodeIterator",
1044
+ "NodeList",
1045
+ "NotRestoredReasonDetails",
1046
+ "NotRestoredReasons",
1047
+ "Notification",
1048
+ "NotificationEvent",
1049
+ "NotifyPaintEvent",
1050
+ "Now",
1051
+ "Npm",
1052
+ "Number",
1053
+ "NumberFormat",
1054
+ "NumberInt",
1055
+ "NumberLong",
1056
+ "OTPCredential",
1057
+ "ObjC",
1058
+ "Object",
1059
+ "ObjectId",
1060
+ "ObjectRange",
1061
+ "ObjectSpecifier",
1062
+ "Observable",
1063
+ "OfflineAudioCompletionEvent",
1064
+ "OfflineAudioContext",
1065
+ "OffscreenCanvas",
1066
+ "OffscreenCanvasRenderingContext2D",
1067
+ "Option",
1068
+ "OrientationSensor",
1069
+ "Origin",
1070
+ "OscillatorNode",
1071
+ "OverconstrainedError",
1072
+ "PERSISTENT",
1073
+ "PI",
1074
+ "POSITIVE_INFINITY",
1075
+ "Package",
1076
+ "Packages",
1077
+ "PageRevealEvent",
1078
+ "PageSwapEvent",
1079
+ "PageTransitionEvent",
1080
+ "PaintRenderingContext2D",
1081
+ "PaintSize",
1082
+ "PaintWorkletGlobalScope",
1083
+ "PannerNode",
1084
+ "PasswordCredential",
1085
+ "Path",
1086
+ "Path2D",
1087
+ "PaymentAddress",
1088
+ "PaymentManager",
1089
+ "PaymentMethodChangeEvent",
1090
+ "PaymentRequest",
1091
+ "PaymentRequestEvent",
1092
+ "PaymentRequestUpdateEvent",
1093
+ "PaymentResponse",
1094
+ "Performance",
1095
+ "PerformanceElementTiming",
1096
+ "PerformanceEntry",
1097
+ "PerformanceEventTiming",
1098
+ "PerformanceLongAnimationFrameTiming",
1099
+ "PerformanceLongTaskTiming",
1100
+ "PerformanceMark",
1101
+ "PerformanceMeasure",
1102
+ "PerformanceNavigation",
1103
+ "PerformanceNavigationTiming",
1104
+ "PerformanceObserver",
1105
+ "PerformanceObserverEntryList",
1106
+ "PerformancePaintTiming",
1107
+ "PerformanceResourceTiming",
1108
+ "PerformanceScriptTiming",
1109
+ "PerformanceServerTiming",
1110
+ "PerformanceTiming",
1111
+ "PerformanceTimingConfidence",
1112
+ "PeriodicSyncEvent",
1113
+ "PeriodicSyncManager",
1114
+ "PeriodicWave",
1115
+ "PeriodicalExecuter",
1116
+ "PermissionStatus",
1117
+ "Permissions",
1118
+ "PictureInPictureEvent",
1119
+ "PictureInPictureWindow",
1120
+ "PlainDate",
1121
+ "PlainDateTime",
1122
+ "PlainMonthDay",
1123
+ "PlainTime",
1124
+ "PlainYearMonth",
1125
+ "PlanCache",
1126
+ "Plugin",
1127
+ "PluginArray",
1128
+ "PluralRules",
1129
+ "PointerEvent",
1130
+ "PopStateEvent",
1131
+ "Position",
1132
+ "Presentation",
1133
+ "PresentationAvailability",
1134
+ "PresentationConnection",
1135
+ "PresentationConnectionAvailableEvent",
1136
+ "PresentationConnectionCloseEvent",
1137
+ "PresentationConnectionList",
1138
+ "PresentationReceiver",
1139
+ "PresentationRequest",
1140
+ "PressureObserver",
1141
+ "PressureRecord",
1142
+ "ProcessingInstruction",
1143
+ "Profiler",
1144
+ "Progress",
1145
+ "ProgressEvent",
1146
+ "Promise",
1147
+ "PromiseRejectionEvent",
1148
+ "ProtectedAudience",
1149
+ "Prototype",
1150
+ "Proxy",
1151
+ "PublicKeyCredential",
1152
+ "PushEvent",
1153
+ "PushManager",
1154
+ "PushMessageData",
1155
+ "PushSubscription",
1156
+ "PushSubscriptionChangeEvent",
1157
+ "PushSubscriptionOptions",
1158
+ "QUnit",
1159
+ "QuotaExceededError",
1160
+ "RTCCertificate",
1161
+ "RTCDTMFSender",
1162
+ "RTCDTMFToneChangeEvent",
1163
+ "RTCDataChannel",
1164
+ "RTCDataChannelEvent",
1165
+ "RTCDtlsTransport",
1166
+ "RTCEncodedAudioFrame",
1167
+ "RTCEncodedVideoFrame",
1168
+ "RTCError",
1169
+ "RTCErrorEvent",
1170
+ "RTCIceCandidate",
1171
+ "RTCIceTransport",
1172
+ "RTCPeerConnection",
1173
+ "RTCPeerConnectionIceErrorEvent",
1174
+ "RTCPeerConnectionIceEvent",
1175
+ "RTCRtpReceiver",
1176
+ "RTCRtpScriptTransform",
1177
+ "RTCRtpScriptTransformer",
1178
+ "RTCRtpSender",
1179
+ "RTCRtpTransceiver",
1180
+ "RTCSctpTransport",
1181
+ "RTCSessionDescription",
1182
+ "RTCStatsReport",
1183
+ "RTCTrackEvent",
1184
+ "RTCTransformEvent",
1185
+ "RadioNodeList",
1186
+ "Random",
1187
+ "Range",
1188
+ "RangeError",
1189
+ "ReactiveDict",
1190
+ "ReactiveVar",
1191
+ "ReadableByteStreamController",
1192
+ "ReadableStream",
1193
+ "ReadableStreamBYOBReader",
1194
+ "ReadableStreamBYOBRequest",
1195
+ "ReadableStreamDefaultController",
1196
+ "ReadableStreamDefaultReader",
1197
+ "Ref",
1198
+ "ReferenceError",
1199
+ "Reflect",
1200
+ "RegExp",
1201
+ "RelativeOrientationSensor",
1202
+ "RelativeTimeFormat",
1203
+ "RemotePlayback",
1204
+ "ReportBody",
1205
+ "ReportingObserver",
1206
+ "Request",
1207
+ "ResizeObserver",
1208
+ "ResizeObserverEntry",
1209
+ "ResizeObserverSize",
1210
+ "ResolveError",
1211
+ "ResolveMessage",
1212
+ "Response",
1213
+ "RestrictionTarget",
1214
+ "Router",
1215
+ "RuntimeObject",
1216
+ "SQRT1_2",
1217
+ "SQRT2",
1218
+ "SVGAElement",
1219
+ "SVGAngle",
1220
+ "SVGAnimateElement",
1221
+ "SVGAnimateMotionElement",
1222
+ "SVGAnimateTransformElement",
1223
+ "SVGAnimatedAngle",
1224
+ "SVGAnimatedBoolean",
1225
+ "SVGAnimatedEnumeration",
1226
+ "SVGAnimatedInteger",
1227
+ "SVGAnimatedLength",
1228
+ "SVGAnimatedLengthList",
1229
+ "SVGAnimatedNumber",
1230
+ "SVGAnimatedNumberList",
1231
+ "SVGAnimatedPreserveAspectRatio",
1232
+ "SVGAnimatedRect",
1233
+ "SVGAnimatedString",
1234
+ "SVGAnimatedTransformList",
1235
+ "SVGAnimationElement",
1236
+ "SVGCircleElement",
1237
+ "SVGClipPathElement",
1238
+ "SVGComponentTransferFunctionElement",
1239
+ "SVGDefsElement",
1240
+ "SVGDescElement",
1241
+ "SVGElement",
1242
+ "SVGEllipseElement",
1243
+ "SVGFEBlendElement",
1244
+ "SVGFEColorMatrixElement",
1245
+ "SVGFEComponentTransferElement",
1246
+ "SVGFECompositeElement",
1247
+ "SVGFEConvolveMatrixElement",
1248
+ "SVGFEDiffuseLightingElement",
1249
+ "SVGFEDisplacementMapElement",
1250
+ "SVGFEDistantLightElement",
1251
+ "SVGFEDropShadowElement",
1252
+ "SVGFEFloodElement",
1253
+ "SVGFEFuncAElement",
1254
+ "SVGFEFuncBElement",
1255
+ "SVGFEFuncGElement",
1256
+ "SVGFEFuncRElement",
1257
+ "SVGFEGaussianBlurElement",
1258
+ "SVGFEImageElement",
1259
+ "SVGFEMergeElement",
1260
+ "SVGFEMergeNodeElement",
1261
+ "SVGFEMorphologyElement",
1262
+ "SVGFEOffsetElement",
1263
+ "SVGFEPointLightElement",
1264
+ "SVGFESpecularLightingElement",
1265
+ "SVGFESpotLightElement",
1266
+ "SVGFETileElement",
1267
+ "SVGFETurbulenceElement",
1268
+ "SVGFilterElement",
1269
+ "SVGForeignObjectElement",
1270
+ "SVGGElement",
1271
+ "SVGGeometryElement",
1272
+ "SVGGradientElement",
1273
+ "SVGGraphicsElement",
1274
+ "SVGImageElement",
1275
+ "SVGLength",
1276
+ "SVGLengthList",
1277
+ "SVGLineElement",
1278
+ "SVGLinearGradientElement",
1279
+ "SVGMPathElement",
1280
+ "SVGMarkerElement",
1281
+ "SVGMaskElement",
1282
+ "SVGMatrix",
1283
+ "SVGMetadataElement",
1284
+ "SVGNumber",
1285
+ "SVGNumberList",
1286
+ "SVGPathElement",
1287
+ "SVGPatternElement",
1288
+ "SVGPoint",
1289
+ "SVGPointList",
1290
+ "SVGPolygonElement",
1291
+ "SVGPolylineElement",
1292
+ "SVGPreserveAspectRatio",
1293
+ "SVGRadialGradientElement",
1294
+ "SVGRect",
1295
+ "SVGRectElement",
1296
+ "SVGSVGElement",
1297
+ "SVGScriptElement",
1298
+ "SVGSetElement",
1299
+ "SVGStopElement",
1300
+ "SVGStringList",
1301
+ "SVGStyleElement",
1302
+ "SVGSwitchElement",
1303
+ "SVGSymbolElement",
1304
+ "SVGTSpanElement",
1305
+ "SVGTextContentElement",
1306
+ "SVGTextElement",
1307
+ "SVGTextPathElement",
1308
+ "SVGTextPositioningElement",
1309
+ "SVGTitleElement",
1310
+ "SVGTransform",
1311
+ "SVGTransformList",
1312
+ "SVGUnitTypes",
1313
+ "SVGUseElement",
1314
+ "SVGViewElement",
1315
+ "Sanitizer",
1316
+ "Scheduler",
1317
+ "Scheduling",
1318
+ "Screen",
1319
+ "ScreenDetailed",
1320
+ "ScreenDetails",
1321
+ "ScreenOrientation",
1322
+ "ScriptEngine",
1323
+ "ScriptEngineBuildVersion",
1324
+ "ScriptEngineMajorVersion",
1325
+ "ScriptEngineMinorVersion",
1326
+ "ScriptProcessorNode",
1327
+ "Scriptaculous",
1328
+ "ScrollTimeline",
1329
+ "SecurityPolicyViolationEvent",
1330
+ "Segmenter",
1331
+ "Segments",
1332
+ "Selection",
1333
+ "Selector",
1334
+ "Sensor",
1335
+ "SensorErrorEvent",
1336
+ "Serial",
1337
+ "SerialPort",
1338
+ "ServiceConfiguration",
1339
+ "ServiceWorker",
1340
+ "ServiceWorkerContainer",
1341
+ "ServiceWorkerGlobalScope",
1342
+ "ServiceWorkerRegistration",
1343
+ "Session",
1344
+ "Set",
1345
+ "ShadowRealm",
1346
+ "ShadowRoot",
1347
+ "SharedArrayBuffer",
1348
+ "SharedStorage",
1349
+ "SharedStorageAppendMethod",
1350
+ "SharedStorageClearMethod",
1351
+ "SharedStorageDeleteMethod",
1352
+ "SharedStorageModifierMethod",
1353
+ "SharedStorageSetMethod",
1354
+ "SharedStorageWorklet",
1355
+ "SharedWorker",
1356
+ "SharedWorkerGlobalScope",
1357
+ "ShellString",
1358
+ "SnapEvent",
1359
+ "Sortable",
1360
+ "SortableObserver",
1361
+ "Sound",
1362
+ "SourceBuffer",
1363
+ "SourceBufferList",
1364
+ "Spacebars",
1365
+ "SpeechGrammar",
1366
+ "SpeechGrammarList",
1367
+ "SpeechRecognition",
1368
+ "SpeechRecognitionErrorEvent",
1369
+ "SpeechRecognitionEvent",
1370
+ "SpeechRecognitionPhrase",
1371
+ "SpeechSynthesis",
1372
+ "SpeechSynthesisErrorEvent",
1373
+ "SpeechSynthesisEvent",
1374
+ "SpeechSynthesisUtterance",
1375
+ "SpeechSynthesisVoice",
1376
+ "StaticRange",
1377
+ "StereoPannerNode",
1378
+ "Storage",
1379
+ "StorageBucket",
1380
+ "StorageBucketManager",
1381
+ "StorageEvent",
1382
+ "StorageManager",
1383
+ "String",
1384
+ "StylePropertyMap",
1385
+ "StylePropertyMapReadOnly",
1386
+ "StyleSheet",
1387
+ "StyleSheetList",
1388
+ "SubmitEvent",
1389
+ "Subscriber",
1390
+ "SubtleCrypto",
1391
+ "Summarizer",
1392
+ "SuppressedError",
1393
+ "Symbol",
1394
+ "SyncEvent",
1395
+ "SyncManager",
1396
+ "SyntaxError",
1397
+ "TEMPORARY",
1398
+ "TaskAttributionTiming",
1399
+ "TaskController",
1400
+ "TaskPriorityChangeEvent",
1401
+ "TaskSignal",
1402
+ "Template",
1403
+ "Temporal",
1404
+ "Text",
1405
+ "TextDecoder",
1406
+ "TextDecoderStream",
1407
+ "TextEncoder",
1408
+ "TextEncoderStream",
1409
+ "TextEvent",
1410
+ "TextFormat",
1411
+ "TextFormatUpdateEvent",
1412
+ "TextMetrics",
1413
+ "TextTrack",
1414
+ "TextTrackCue",
1415
+ "TextTrackCueList",
1416
+ "TextTrackList",
1417
+ "TextUpdateEvent",
1418
+ "TimeEvent",
1419
+ "TimeRanges",
1420
+ "TimelineTrigger",
1421
+ "TimelineTriggerRange",
1422
+ "TimelineTriggerRangeList",
1423
+ "Tinytest",
1424
+ "Toggle",
1425
+ "ToggleEvent",
1426
+ "Touch",
1427
+ "TouchEvent",
1428
+ "TouchList",
1429
+ "TrackEvent",
1430
+ "Tracker",
1431
+ "TransformStream",
1432
+ "TransformStreamDefaultController",
1433
+ "TransitionEvent",
1434
+ "Translator",
1435
+ "TreeWalker",
1436
+ "TrustedHTML",
1437
+ "TrustedScript",
1438
+ "TrustedScriptURL",
1439
+ "TrustedTypePolicy",
1440
+ "TrustedTypePolicyFactory",
1441
+ "Try",
1442
+ "TypeError",
1443
+ "TypedArray",
1444
+ "UI",
1445
+ "UIEvent",
1446
+ "URIError",
1447
+ "URL",
1448
+ "URLPattern",
1449
+ "URLSearchParams",
1450
+ "USB",
1451
+ "USBAlternateInterface",
1452
+ "USBConfiguration",
1453
+ "USBConnectionEvent",
1454
+ "USBDevice",
1455
+ "USBEndpoint",
1456
+ "USBInTransferResult",
1457
+ "USBInterface",
1458
+ "USBIsochronousInTransferPacket",
1459
+ "USBIsochronousInTransferResult",
1460
+ "USBIsochronousOutTransferPacket",
1461
+ "USBIsochronousOutTransferResult",
1462
+ "USBOutTransferResult",
1463
+ "UTC",
1464
+ "UUID",
1465
+ "Uint16Array",
1466
+ "Uint32Array",
1467
+ "Uint8Array",
1468
+ "Uint8ClampedArray",
1469
+ "UserActivation",
1470
+ "Utils",
1471
+ "VBArray",
1472
+ "VTTCue",
1473
+ "VTTRegion",
1474
+ "ValidityState",
1475
+ "VideoColorSpace",
1476
+ "VideoDecoder",
1477
+ "VideoEncoder",
1478
+ "VideoFrame",
1479
+ "VideoPlaybackQuality",
1480
+ "ViewTimeline",
1481
+ "ViewTransition",
1482
+ "ViewTransitionTypeSet",
1483
+ "Viewport",
1484
+ "VirtualKeyboard",
1485
+ "VirtualKeyboardGeometryChangeEvent",
1486
+ "VisibilityStateEntry",
1487
+ "VisualViewport",
1488
+ "WGSLLanguageFeatures",
1489
+ "WSH",
1490
+ "WScript",
1491
+ "WakeLock",
1492
+ "WakeLockSentinel",
1493
+ "WaveShaperNode",
1494
+ "WeakMap",
1495
+ "WeakRef",
1496
+ "WeakSet",
1497
+ "WebApp",
1498
+ "WebAppInternals",
1499
+ "WebAssembly",
1500
+ "WebGL2RenderingContext",
1501
+ "WebGLActiveInfo",
1502
+ "WebGLBuffer",
1503
+ "WebGLContextEvent",
1504
+ "WebGLFramebuffer",
1505
+ "WebGLObject",
1506
+ "WebGLProgram",
1507
+ "WebGLQuery",
1508
+ "WebGLRenderbuffer",
1509
+ "WebGLRenderingContext",
1510
+ "WebGLSampler",
1511
+ "WebGLShader",
1512
+ "WebGLShaderPrecisionFormat",
1513
+ "WebGLSync",
1514
+ "WebGLTexture",
1515
+ "WebGLTransformFeedback",
1516
+ "WebGLUniformLocation",
1517
+ "WebGLVertexArrayObject",
1518
+ "WebPage",
1519
+ "WebSocket",
1520
+ "WebSocketError",
1521
+ "WebSocketStream",
1522
+ "WebTransport",
1523
+ "WebTransportBidirectionalStream",
1524
+ "WebTransportDatagramDuplexStream",
1525
+ "WebTransportError",
1526
+ "WebTransportReceiveStream",
1527
+ "WebTransportSendStream",
1528
+ "WheelEvent",
1529
+ "Window",
1530
+ "WindowClient",
1531
+ "WindowControlsOverlay",
1532
+ "WindowControlsOverlayGeometryChangeEvent",
1533
+ "Worker",
1534
+ "WorkerGlobalScope",
1535
+ "WorkerLocation",
1536
+ "WorkerNavigator",
1537
+ "Worklet",
1538
+ "WorkletGlobalScope",
1539
+ "WritableStream",
1540
+ "WritableStreamDefaultController",
1541
+ "WritableStreamDefaultWriter",
1542
+ "WriteResult",
1543
+ "XMLDocument",
1544
+ "XMLHttpRequest",
1545
+ "XMLHttpRequestEventTarget",
1546
+ "XMLHttpRequestUpload",
1547
+ "XMLSerializer",
1548
+ "XPathEvaluator",
1549
+ "XPathExpression",
1550
+ "XPathResult",
1551
+ "XRAnchor",
1552
+ "XRAnchorSet",
1553
+ "XRBoundedReferenceSpace",
1554
+ "XRCPUDepthInformation",
1555
+ "XRCamera",
1556
+ "XRCompositionLayer",
1557
+ "XRCubeLayer",
1558
+ "XRCylinderLayer",
1559
+ "XRDOMOverlayState",
1560
+ "XRDepthInformation",
1561
+ "XREquirectLayer",
1562
+ "XRFrame",
1563
+ "XRHand",
1564
+ "XRHitTestResult",
1565
+ "XRHitTestSource",
1566
+ "XRInputSource",
1567
+ "XRInputSourceArray",
1568
+ "XRInputSourceEvent",
1569
+ "XRInputSourcesChangeEvent",
1570
+ "XRJointPose",
1571
+ "XRJointSpace",
1572
+ "XRLayer",
1573
+ "XRLayerEvent",
1574
+ "XRLightEstimate",
1575
+ "XRLightProbe",
1576
+ "XRPlane",
1577
+ "XRPlaneSet",
1578
+ "XRPose",
1579
+ "XRProjectionLayer",
1580
+ "XRQuadLayer",
1581
+ "XRRay",
1582
+ "XRReferenceSpace",
1583
+ "XRReferenceSpaceEvent",
1584
+ "XRRenderState",
1585
+ "XRRigidTransform",
1586
+ "XRSession",
1587
+ "XRSessionEvent",
1588
+ "XRSpace",
1589
+ "XRSubImage",
1590
+ "XRSystem",
1591
+ "XRTransientInputHitTestResult",
1592
+ "XRTransientInputHitTestSource",
1593
+ "XRView",
1594
+ "XRViewerPose",
1595
+ "XRViewport",
1596
+ "XRVisibilityMaskChangeEvent",
1597
+ "XRWebGLBinding",
1598
+ "XRWebGLDepthInformation",
1599
+ "XRWebGLLayer",
1600
+ "XRWebGLSubImage",
1601
+ "XSLTProcessor",
1602
+ "YAHOO",
1603
+ "YAHOO_config",
1604
+ "YUI",
1605
+ "YUI_config",
1606
+ "ZonedDateTime",
1607
+ "__DIR__",
1608
+ "__FILE__",
1609
+ "__LINE__",
1610
+ "__defineGetter__",
1611
+ "__defineSetter__",
1612
+ "__dirname",
1613
+ "__filename",
1614
+ "__lookupGetter__",
1615
+ "__lookupSetter__",
1616
+ "__non_webpack_require__",
1617
+ "__proto__",
1618
+ "__resourceQuery",
1619
+ "__rspack_unique_id__",
1620
+ "__rspack_version__",
1621
+ "__system_context__",
1622
+ "__webpack_base_uri__",
1623
+ "__webpack_chunk_load__",
1624
+ "__webpack_chunkname__",
1625
+ "__webpack_exports_info__",
1626
+ "__webpack_get_script_filename__",
1627
+ "__webpack_hash__",
1628
+ "__webpack_init_sharing__",
1629
+ "__webpack_is_included__",
1630
+ "__webpack_module__",
1631
+ "__webpack_modules__",
1632
+ "__webpack_nonce__",
1633
+ "__webpack_public_path__",
1634
+ "__webpack_require__",
1635
+ "__webpack_runtime_id__",
1636
+ "__webpack_share_scopes__",
1637
+ "_isWindows",
1638
+ "_rand",
1639
+ "abs",
1640
+ "acos",
1641
+ "acosh",
1642
+ "add",
1643
+ "addEventListener",
1644
+ "adopt",
1645
+ "advanceClock",
1646
+ "after",
1647
+ "afterAll",
1648
+ "afterEach",
1649
+ "ai",
1650
+ "alert",
1651
+ "all",
1652
+ "allSettled",
1653
+ "anchor",
1654
+ "anchored_sticky_flag",
1655
+ "and",
1656
+ "andThen",
1657
+ "any",
1658
+ "apply",
1659
+ "arguments",
1660
+ "asIntN",
1661
+ "asUintN",
1662
+ "asin",
1663
+ "asinh",
1664
+ "assert",
1665
+ "assertType",
1666
+ "assign",
1667
+ "asyncDispose",
1668
+ "asyncIterator",
1669
+ "asyncTest",
1670
+ "at",
1671
+ "atan",
1672
+ "atan2",
1673
+ "atanh",
1674
+ "atob",
1675
+ "atom",
1676
+ "baseName",
1677
+ "before",
1678
+ "beforeAll",
1679
+ "beforeEach",
1680
+ "big",
1681
+ "bind",
1682
+ "blank",
1683
+ "blink",
1684
+ "blur",
1685
+ "bold",
1686
+ "browser",
1687
+ "btoa",
1688
+ "buffer",
1689
+ "by",
1690
+ "byteLength",
1691
+ "byteOffset",
1692
+ "caches",
1693
+ "calendar",
1694
+ "calendarId",
1695
+ "call",
1696
+ "caller",
1697
+ "cancelAnimationFrame",
1698
+ "cancelIdleCallback",
1699
+ "captureStackTrace",
1700
+ "caseFirst",
1701
+ "cat",
1702
+ "catch",
1703
+ "cause",
1704
+ "cbrt",
1705
+ "cd",
1706
+ "ceil",
1707
+ "chai",
1708
+ "charAt",
1709
+ "charCodeAt",
1710
+ "check",
1711
+ "chmod",
1712
+ "chrome",
1713
+ "clear",
1714
+ "clearImmediate",
1715
+ "clearInterval",
1716
+ "clearTimeout",
1717
+ "click",
1718
+ "clientInformation",
1719
+ "clients",
1720
+ "cloneInto",
1721
+ "close",
1722
+ "closed",
1723
+ "clz32",
1724
+ "cmd",
1725
+ "codePointAt",
1726
+ "collation",
1727
+ "columnNumber",
1728
+ "com",
1729
+ "compare",
1730
+ "compareExchange",
1731
+ "compile",
1732
+ "computed_timezone",
1733
+ "concat",
1734
+ "config",
1735
+ "configurable_true",
1736
+ "confirm",
1737
+ "connect",
1738
+ "console",
1739
+ "construct",
1740
+ "constructor",
1741
+ "constructor_without_parameters",
1742
+ "containing",
1743
+ "context",
1744
+ "cookieStore",
1745
+ "copy",
1746
+ "copyWithin",
1747
+ "cos",
1748
+ "cosh",
1749
+ "cp",
1750
+ "crashReport",
1751
+ "create",
1752
+ "createImageBitmap",
1753
+ "createObjectIn",
1754
+ "credentialless",
1755
+ "crossOriginIsolated",
1756
+ "crypto",
1757
+ "currentFrame",
1758
+ "currentPath",
1759
+ "currentRouteName",
1760
+ "currentTime",
1761
+ "currentURL",
1762
+ "customElements",
1763
+ "day",
1764
+ "dayOfWeek",
1765
+ "dayOfYear",
1766
+ "days",
1767
+ "daysInMonth",
1768
+ "daysInWeek",
1769
+ "daysInYear",
1770
+ "db",
1771
+ "debug",
1772
+ "decodeURI",
1773
+ "decodeURIComponent",
1774
+ "deepEqual",
1775
+ "defer",
1776
+ "define",
1777
+ "defineClass",
1778
+ "defineEmits",
1779
+ "defineExpose",
1780
+ "defineGetter",
1781
+ "defineModel",
1782
+ "defineOptions",
1783
+ "defineProperties",
1784
+ "defineProperty",
1785
+ "defineProps",
1786
+ "defineSetter",
1787
+ "defineSlots",
1788
+ "delay",
1789
+ "delete",
1790
+ "deleteProperty",
1791
+ "deref",
1792
+ "describe",
1793
+ "description",
1794
+ "deserialize",
1795
+ "detached",
1796
+ "devicePixelRatio",
1797
+ "difference",
1798
+ "dir",
1799
+ "dirs",
1800
+ "dirxml",
1801
+ "dispatchEvent",
1802
+ "displayName",
1803
+ "dispose",
1804
+ "disposeAsync",
1805
+ "disposed",
1806
+ "document",
1807
+ "documentPictureInPicture",
1808
+ "dom_objects",
1809
+ "dotAll",
1810
+ "drop",
1811
+ "echo",
1812
+ "edu",
1813
+ "element",
1814
+ "emit",
1815
+ "empty_regex_string",
1816
+ "encodeURI",
1817
+ "encodeURIComponent",
1818
+ "endsWith",
1819
+ "enforces_trusted_types",
1820
+ "entries",
1821
+ "env",
1822
+ "epochMilliseconds",
1823
+ "epochNanoseconds",
1824
+ "equal",
1825
+ "equals",
1826
+ "era",
1827
+ "eraYear",
1828
+ "error",
1829
+ "errorCode",
1830
+ "errors",
1831
+ "escape",
1832
+ "escaping",
1833
+ "eval",
1834
+ "event",
1835
+ "every",
1836
+ "exchange",
1837
+ "exec",
1838
+ "exit",
1839
+ "exp",
1840
+ "expect",
1841
+ "expectAsync",
1842
+ "expectTypeOf",
1843
+ "expm1",
1844
+ "exportFunction",
1845
+ "exports",
1846
+ "extended_values",
1847
+ "external",
1848
+ "f16round",
1849
+ "fail",
1850
+ "fakeClearInterval",
1851
+ "fakeClearTimeout",
1852
+ "fakeSetInterval",
1853
+ "fakeSetTimeout",
1854
+ "fdescribe",
1855
+ "fence",
1856
+ "fetch",
1857
+ "fetchLater",
1858
+ "fileName",
1859
+ "fileName_parameter",
1860
+ "fill",
1861
+ "fillIn",
1862
+ "filter",
1863
+ "finally",
1864
+ "find",
1865
+ "findAll",
1866
+ "findIndex",
1867
+ "findLast",
1868
+ "findLastIndex",
1869
+ "findWithAssert",
1870
+ "fit",
1871
+ "fixed",
1872
+ "flags",
1873
+ "flat",
1874
+ "flatMap",
1875
+ "floor",
1876
+ "focus",
1877
+ "fontcolor",
1878
+ "fonts",
1879
+ "fontsize",
1880
+ "for",
1881
+ "forEach",
1882
+ "format",
1883
+ "formatRange",
1884
+ "formatRangeToParts",
1885
+ "formatToParts",
1886
+ "frameElement",
1887
+ "frames",
1888
+ "freeze",
1889
+ "from",
1890
+ "fromAsync",
1891
+ "fromBase64",
1892
+ "fromCharCode",
1893
+ "fromCodePoint",
1894
+ "fromEntries",
1895
+ "fromEpochMilliseconds",
1896
+ "fromEpochNanoseconds",
1897
+ "fromHex",
1898
+ "fround",
1899
+ "gc",
1900
+ "generic_arrays_as_arguments",
1901
+ "get",
1902
+ "getBigInt64",
1903
+ "getBigUint64",
1904
+ "getCalendars",
1905
+ "getCanonicalLocales",
1906
+ "getCollations",
1907
+ "getComputedStyle",
1908
+ "getDate",
1909
+ "getDay",
1910
+ "getEventListeners",
1911
+ "getFloat16",
1912
+ "getFloat32",
1913
+ "getFloat64",
1914
+ "getFullYear",
1915
+ "getHostName",
1916
+ "getHourCycles",
1917
+ "getHours",
1918
+ "getInt16",
1919
+ "getInt32",
1920
+ "getInt8",
1921
+ "getMemInfo",
1922
+ "getMilliseconds",
1923
+ "getMinutes",
1924
+ "getMonth",
1925
+ "getNumberingSystems",
1926
+ "getOrInsert",
1927
+ "getOrInsertComputed",
1928
+ "getOwnPropertyDescriptor",
1929
+ "getOwnPropertyDescriptors",
1930
+ "getOwnPropertyNames",
1931
+ "getOwnPropertySymbols",
1932
+ "getParent",
1933
+ "getPrototypeOf",
1934
+ "getRow",
1935
+ "getScreenDetails",
1936
+ "getSeconds",
1937
+ "getSelection",
1938
+ "getTextInfo",
1939
+ "getTime",
1940
+ "getTimeZoneTransition",
1941
+ "getTimeZones",
1942
+ "getTimezoneOffset",
1943
+ "getUTCDate",
1944
+ "getUTCDay",
1945
+ "getUTCFullYear",
1946
+ "getUTCHours",
1947
+ "getUTCMilliseconds",
1948
+ "getUTCMinutes",
1949
+ "getUTCMonth",
1950
+ "getUTCSeconds",
1951
+ "getUint16",
1952
+ "getUint32",
1953
+ "getUint8",
1954
+ "getWeekInfo",
1955
+ "getYear",
1956
+ "global",
1957
+ "globalThis",
1958
+ "grep",
1959
+ "groupBy",
1960
+ "grow",
1961
+ "growable",
1962
+ "handler",
1963
+ "has",
1964
+ "hasIndices",
1965
+ "hasInstance",
1966
+ "hasOwn",
1967
+ "hasOwnProperty",
1968
+ "head",
1969
+ "help",
1970
+ "history",
1971
+ "hostname",
1972
+ "hour",
1973
+ "hourCycle",
1974
+ "hours",
1975
+ "hoursInDay",
1976
+ "hypot",
1977
+ "iana_time_zone_names",
1978
+ "iana_time_zones",
1979
+ "ignoreCase",
1980
+ "importClass",
1981
+ "importPackage",
1982
+ "importScripts",
1983
+ "imul",
1984
+ "inLeapYear",
1985
+ "includes",
1986
+ "includes_UTC",
1987
+ "incumbent_settings_object_tracking",
1988
+ "indexOf",
1989
+ "index_properties_not_consulting_prototype",
1990
+ "indexedDB",
1991
+ "inferred_names",
1992
+ "innerHeight",
1993
+ "innerWidth",
1994
+ "input",
1995
+ "inspect",
1996
+ "instant",
1997
+ "intersection",
1998
+ "is",
1999
+ "isArray",
2000
+ "isConcatSpreadable",
2001
+ "isDisjointFrom",
2002
+ "isError",
2003
+ "isExtensible",
2004
+ "isFinite",
2005
+ "isFrozen",
2006
+ "isInteger",
2007
+ "isLockFree",
2008
+ "isNaN",
2009
+ "isPrototypeOf",
2010
+ "isRawJSON",
2011
+ "isSafeInteger",
2012
+ "isSealed",
2013
+ "isSecureContext",
2014
+ "isSubsetOf",
2015
+ "isSupersetOf",
2016
+ "isView",
2017
+ "isWellFormed",
2018
+ "iso_8601",
2019
+ "it",
2020
+ "italics",
2021
+ "iterable_allowed",
2022
+ "iterable_in_constructor",
2023
+ "iterator",
2024
+ "jQuery",
2025
+ "jasmine",
2026
+ "java",
2027
+ "javafx",
2028
+ "javax",
2029
+ "jest",
2030
+ "join",
2031
+ "json_superset",
2032
+ "keyEvent",
2033
+ "keyFor",
2034
+ "key_equality_for_zeros",
2035
+ "key_parameter_calendar",
2036
+ "key_parameter_collation",
2037
+ "key_parameter_currency",
2038
+ "key_parameter_numberingSystem",
2039
+ "key_parameter_timeZone",
2040
+ "key_parameter_unit",
2041
+ "keys",
2042
+ "language",
2043
+ "lastIndex",
2044
+ "lastIndexOf",
2045
+ "lastMatch",
2046
+ "lastParen",
2047
+ "launchQueue",
2048
+ "leading_zero_strings_as_decimal",
2049
+ "leftContext",
2050
+ "length",
2051
+ "lineNumber",
2052
+ "lineNumber_parameter",
2053
+ "link",
2054
+ "listFiles",
2055
+ "ln",
2056
+ "load",
2057
+ "loadClass",
2058
+ "loadWithNewGlobal",
2059
+ "localStorage",
2060
+ "localeCompare",
2061
+ "locales_parameter",
2062
+ "location",
2063
+ "locationbar",
2064
+ "log",
2065
+ "log10",
2066
+ "log1p",
2067
+ "log2",
2068
+ "lookupGetter",
2069
+ "lookupSetter",
2070
+ "ls",
2071
+ "map",
2072
+ "match",
2073
+ "matchAll",
2074
+ "matchMedia",
2075
+ "max",
2076
+ "maxByteLength",
2077
+ "maxByteLength_option",
2078
+ "maximize",
2079
+ "md5sumFile",
2080
+ "menubar",
2081
+ "message",
2082
+ "microsecond",
2083
+ "microseconds",
2084
+ "millisecond",
2085
+ "milliseconds",
2086
+ "min",
2087
+ "minimize",
2088
+ "minute",
2089
+ "minutes",
2090
+ "mkdir",
2091
+ "mocha",
2092
+ "model",
2093
+ "module",
2094
+ "monitor",
2095
+ "monitorEvents",
2096
+ "month",
2097
+ "monthCode",
2098
+ "months",
2099
+ "monthsInYear",
2100
+ "move",
2101
+ "moveBy",
2102
+ "moveTo",
2103
+ "multiline",
2104
+ "mv",
2105
+ "n",
2106
+ "name",
2107
+ "named_properties",
2108
+ "nanosecond",
2109
+ "nanoseconds",
2110
+ "navigation",
2111
+ "navigator",
2112
+ "negated",
2113
+ "negative",
2114
+ "next",
2115
+ "normalize",
2116
+ "notDeepEqual",
2117
+ "notEqual",
2118
+ "notOk",
2119
+ "notPropEqual",
2120
+ "notStrictEqual",
2121
+ "notify",
2122
+ "now",
2123
+ "null_allowed",
2124
+ "number_parameter-string_decimal",
2125
+ "numberingSystem",
2126
+ "numeric",
2127
+ "of",
2128
+ "offscreenBuffering",
2129
+ "offset",
2130
+ "offsetNanoseconds",
2131
+ "ok",
2132
+ "onTestFailed",
2133
+ "onTestFinished",
2134
+ "onabort",
2135
+ "onabortpayment",
2136
+ "onactivate",
2137
+ "onafterprint",
2138
+ "onanimationcancel",
2139
+ "onanimationend",
2140
+ "onanimationiteration",
2141
+ "onanimationstart",
2142
+ "onappinstalled",
2143
+ "onauxclick",
2144
+ "onbackgroundfetchabort",
2145
+ "onbackgroundfetchclick",
2146
+ "onbackgroundfetchfail",
2147
+ "onbackgroundfetchsuccess",
2148
+ "onbeforeinput",
2149
+ "onbeforeinstallprompt",
2150
+ "onbeforematch",
2151
+ "onbeforeprint",
2152
+ "onbeforetoggle",
2153
+ "onbeforeunload",
2154
+ "onbeforexrselect",
2155
+ "onblur",
2156
+ "oncancel",
2157
+ "oncanmakepayment",
2158
+ "oncanplay",
2159
+ "oncanplaythrough",
2160
+ "onchange",
2161
+ "onclick",
2162
+ "onclose",
2163
+ "oncommand",
2164
+ "onconnect",
2165
+ "oncontentvisibilityautostatechange",
2166
+ "oncontextlost",
2167
+ "oncontextmenu",
2168
+ "oncontextrestored",
2169
+ "oncookiechange",
2170
+ "oncopy",
2171
+ "oncuechange",
2172
+ "oncut",
2173
+ "ondblclick",
2174
+ "ondevicemotion",
2175
+ "ondeviceorientation",
2176
+ "ondeviceorientationabsolute",
2177
+ "ondrag",
2178
+ "ondragend",
2179
+ "ondragenter",
2180
+ "ondragleave",
2181
+ "ondragover",
2182
+ "ondragstart",
2183
+ "ondrop",
2184
+ "ondurationchange",
2185
+ "onemptied",
2186
+ "onended",
2187
+ "onerror",
2188
+ "onfetch",
2189
+ "onfocus",
2190
+ "onformdata",
2191
+ "ongamepadconnected",
2192
+ "ongamepaddisconnected",
2193
+ "ongotpointercapture",
2194
+ "onhashchange",
2195
+ "oninput",
2196
+ "oninstall",
2197
+ "oninvalid",
2198
+ "onkeydown",
2199
+ "onkeypress",
2200
+ "onkeyup",
2201
+ "onlanguagechange",
2202
+ "onload",
2203
+ "onloadeddata",
2204
+ "onloadedmetadata",
2205
+ "onloadstart",
2206
+ "onlostpointercapture",
2207
+ "onmessage",
2208
+ "onmessageerror",
2209
+ "onmousedown",
2210
+ "onmouseenter",
2211
+ "onmouseleave",
2212
+ "onmousemove",
2213
+ "onmouseout",
2214
+ "onmouseover",
2215
+ "onmouseup",
2216
+ "onmousewheel",
2217
+ "onnotificationclick",
2218
+ "onnotificationclose",
2219
+ "onoffline",
2220
+ "ononline",
2221
+ "onpagehide",
2222
+ "onpagereveal",
2223
+ "onpageshow",
2224
+ "onpageswap",
2225
+ "onpaste",
2226
+ "onpause",
2227
+ "onpaymentrequest",
2228
+ "onperiodicsync",
2229
+ "onplay",
2230
+ "onplaying",
2231
+ "onpointercancel",
2232
+ "onpointerdown",
2233
+ "onpointerenter",
2234
+ "onpointerleave",
2235
+ "onpointermove",
2236
+ "onpointerout",
2237
+ "onpointerover",
2238
+ "onpointerrawupdate",
2239
+ "onpointerup",
2240
+ "onpopstate",
2241
+ "onprogress",
2242
+ "onpush",
2243
+ "onpushsubscriptionchange",
2244
+ "onratechange",
2245
+ "onrejectionhandled",
2246
+ "onreset",
2247
+ "onresize",
2248
+ "onrtctransform",
2249
+ "onscroll",
2250
+ "onscrollend",
2251
+ "onscrollsnapchange",
2252
+ "onscrollsnapchanging",
2253
+ "onsearch",
2254
+ "onsecuritypolicyviolation",
2255
+ "onseeked",
2256
+ "onseeking",
2257
+ "onselect",
2258
+ "onselectionchange",
2259
+ "onselectstart",
2260
+ "onslotchange",
2261
+ "onstalled",
2262
+ "onstorage",
2263
+ "onsubmit",
2264
+ "onsuspend",
2265
+ "onsync",
2266
+ "ontimeupdate",
2267
+ "ontoggle",
2268
+ "ontransitioncancel",
2269
+ "ontransitionend",
2270
+ "ontransitionrun",
2271
+ "ontransitionstart",
2272
+ "onunhandledrejection",
2273
+ "onunload",
2274
+ "onvolumechange",
2275
+ "onwaiting",
2276
+ "onwheel",
2277
+ "open",
2278
+ "opener",
2279
+ "opr",
2280
+ "optional_monthIndex",
2281
+ "options_calendar_parameter",
2282
+ "options_caseFirst_parameter",
2283
+ "options_cause_parameter",
2284
+ "options_collation_parameter",
2285
+ "options_compactDisplay_parameter",
2286
+ "options_currencyDisplay_parameter",
2287
+ "options_currencySign_parameter",
2288
+ "options_currency_parameter",
2289
+ "options_dateStyle_parameter",
2290
+ "options_dayPeriod_parameter",
2291
+ "options_fractionalSecondDigits_parameter",
2292
+ "options_hourCycle_parameter",
2293
+ "options_ignorePunctuation_parameter",
2294
+ "options_localeMatcher_parameter",
2295
+ "options_maximumFractionDigits_parameter",
2296
+ "options_maximumSignificantDigits_parameter",
2297
+ "options_minimumFractionDigits_parameter",
2298
+ "options_minimumIntegerDigits_parameter",
2299
+ "options_minimumSignificantDigits_parameter",
2300
+ "options_notation_parameter",
2301
+ "options_numberingSystem_parameter",
2302
+ "options_numeric_parameter",
2303
+ "options_parameter",
2304
+ "options_roundingIncrement_parameter",
2305
+ "options_roundingMode_parameter",
2306
+ "options_roundingPriority_parameter",
2307
+ "options_sensitivity_parameter",
2308
+ "options_signDisplay_parameter",
2309
+ "options_style_parameter",
2310
+ "options_timeStyle_parameter",
2311
+ "options_timeZoneName_parameter",
2312
+ "options_timeZone_parameter",
2313
+ "options_trailingZeroDisplay_parameter",
2314
+ "options_unitDisplay_parameter",
2315
+ "options_unit_parameter",
2316
+ "options_usage_parameter",
2317
+ "options_useGrouping_parameter",
2318
+ "or",
2319
+ "org",
2320
+ "origin",
2321
+ "originAgentCluster",
2322
+ "outerHeight",
2323
+ "outerWidth",
2324
+ "ownKeys",
2325
+ "padEnd",
2326
+ "padStart",
2327
+ "pageXOffset",
2328
+ "pageYOffset",
2329
+ "parent",
2330
+ "parse",
2331
+ "parseFloat",
2332
+ "parseInt",
2333
+ "pause",
2334
+ "pauseTest",
2335
+ "pending",
2336
+ "performance",
2337
+ "personalbar",
2338
+ "phantom",
2339
+ "plainDateISO",
2340
+ "plainDateTimeISO",
2341
+ "plainTimeISO",
2342
+ "pop",
2343
+ "popd",
2344
+ "port",
2345
+ "postMessage",
2346
+ "pow",
2347
+ "preventExtensions",
2348
+ "print",
2349
+ "printjson",
2350
+ "process",
2351
+ "profile",
2352
+ "profileEnd",
2353
+ "prompt",
2354
+ "propEqual",
2355
+ "propertyIsEnumerable",
2356
+ "proto",
2357
+ "prototype",
2358
+ "prototype_accessor",
2359
+ "protractor",
2360
+ "provides",
2361
+ "push",
2362
+ "pushd",
2363
+ "pwd",
2364
+ "queryLocalFonts",
2365
+ "queryObjects",
2366
+ "queueMicrotask",
2367
+ "quit",
2368
+ "race",
2369
+ "raises",
2370
+ "random",
2371
+ "raw",
2372
+ "rawJSON",
2373
+ "readFile",
2374
+ "readUrl",
2375
+ "reduce",
2376
+ "reduceRight",
2377
+ "region",
2378
+ "register",
2379
+ "registerPaint",
2380
+ "registerProcessor",
2381
+ "registration",
2382
+ "reject",
2383
+ "removeEventListener",
2384
+ "removeFile",
2385
+ "repeat",
2386
+ "replace",
2387
+ "replaceAll",
2388
+ "reportError",
2389
+ "requestAnimationFrame",
2390
+ "requestIdleCallback",
2391
+ "require",
2392
+ "resetTimeouts",
2393
+ "resizable",
2394
+ "resize",
2395
+ "resizeBy",
2396
+ "resizeTo",
2397
+ "resolve",
2398
+ "resolvedOptions",
2399
+ "respond",
2400
+ "resumeTest",
2401
+ "return",
2402
+ "returns_minimalDays_property",
2403
+ "reverse",
2404
+ "reviver_parameter_context_argument",
2405
+ "revocable",
2406
+ "rexexp_legacy_features",
2407
+ "rightContext",
2408
+ "rm",
2409
+ "round",
2410
+ "rs",
2411
+ "run",
2412
+ "runCommand",
2413
+ "runs",
2414
+ "sampleRate",
2415
+ "scheduler",
2416
+ "screen",
2417
+ "screenLeft",
2418
+ "screenTop",
2419
+ "screenX",
2420
+ "screenY",
2421
+ "script",
2422
+ "scroll",
2423
+ "scrollBy",
2424
+ "scrollTo",
2425
+ "scrollX",
2426
+ "scrollY",
2427
+ "scrollbars",
2428
+ "seal",
2429
+ "search",
2430
+ "second",
2431
+ "seconds",
2432
+ "sed",
2433
+ "segment",
2434
+ "select",
2435
+ "selectRange",
2436
+ "self",
2437
+ "send",
2438
+ "serializable_object",
2439
+ "serialize",
2440
+ "serviceWorker",
2441
+ "sessionStorage",
2442
+ "set",
2443
+ "setBigInt64",
2444
+ "setBigUint64",
2445
+ "setDate",
2446
+ "setFloat16",
2447
+ "setFloat32",
2448
+ "setFloat64",
2449
+ "setFromBase64",
2450
+ "setFromHex",
2451
+ "setFullYear",
2452
+ "setHours",
2453
+ "setImmediate",
2454
+ "setInt16",
2455
+ "setInt32",
2456
+ "setInt8",
2457
+ "setInterval",
2458
+ "setMilliseconds",
2459
+ "setMinutes",
2460
+ "setMonth",
2461
+ "setPrototypeOf",
2462
+ "setSeconds",
2463
+ "setTime",
2464
+ "setTimeout",
2465
+ "setUTCDate",
2466
+ "setUTCFullYear",
2467
+ "setUTCHours",
2468
+ "setUTCMilliseconds",
2469
+ "setUTCMinutes",
2470
+ "setUTCMonth",
2471
+ "setUTCSeconds",
2472
+ "setUint16",
2473
+ "setUint32",
2474
+ "setUint8",
2475
+ "setYear",
2476
+ "setup",
2477
+ "sh",
2478
+ "share",
2479
+ "sharedStorage",
2480
+ "sharedarraybuffer_support",
2481
+ "shift",
2482
+ "should",
2483
+ "showDirectoryPicker",
2484
+ "showOpenFilePicker",
2485
+ "showSaveFilePicker",
2486
+ "sign",
2487
+ "sin",
2488
+ "since",
2489
+ "sinh",
2490
+ "size",
2491
+ "skipWaiting",
2492
+ "slice",
2493
+ "small",
2494
+ "some",
2495
+ "sort",
2496
+ "source",
2497
+ "spawn",
2498
+ "species",
2499
+ "specify",
2500
+ "speechSynthesis",
2501
+ "splice",
2502
+ "split",
2503
+ "spyOn",
2504
+ "spyOnAllFunctions",
2505
+ "spyOnProperty",
2506
+ "sqrt",
2507
+ "stable_sorting",
2508
+ "stack",
2509
+ "stackTraceLimit",
2510
+ "start",
2511
+ "startOfDay",
2512
+ "startsWith",
2513
+ "status",
2514
+ "statusbar",
2515
+ "sticky",
2516
+ "stop",
2517
+ "store",
2518
+ "strictEqual",
2519
+ "strike",
2520
+ "string_values",
2521
+ "stringify",
2522
+ "structuredClone",
2523
+ "styleMedia",
2524
+ "sub",
2525
+ "subarray",
2526
+ "substr",
2527
+ "substring",
2528
+ "subtract",
2529
+ "suite",
2530
+ "suiteSetup",
2531
+ "suiteTeardown",
2532
+ "sum",
2533
+ "sumPrecise",
2534
+ "sup",
2535
+ "supportedLocalesOf",
2536
+ "supportedValuesOf",
2537
+ "suppressed",
2538
+ "symbol_as_keys",
2539
+ "symbol_as_target",
2540
+ "symmetricDifference",
2541
+ "sync",
2542
+ "table",
2543
+ "tail",
2544
+ "take",
2545
+ "tan",
2546
+ "tanh",
2547
+ "teardown",
2548
+ "tempdir",
2549
+ "test",
2550
+ "then",
2551
+ "throw",
2552
+ "throwUnless",
2553
+ "throwUnlessAsync",
2554
+ "throws",
2555
+ "timeZoneId",
2556
+ "toArray",
2557
+ "toBase64",
2558
+ "toDateString",
2559
+ "toExponential",
2560
+ "toFixed",
2561
+ "toGMTString",
2562
+ "toHex",
2563
+ "toISOString",
2564
+ "toInstant",
2565
+ "toJSON",
2566
+ "toLocaleDateString",
2567
+ "toLocaleLowerCase",
2568
+ "toLocaleString",
2569
+ "toLocaleTimeString",
2570
+ "toLocaleUpperCase",
2571
+ "toLowerCase",
2572
+ "toPlainDate",
2573
+ "toPlainDateTime",
2574
+ "toPlainMonthDay",
2575
+ "toPlainTime",
2576
+ "toPlainYearMonth",
2577
+ "toPrecision",
2578
+ "toPrimitive",
2579
+ "toReversed",
2580
+ "toSorted",
2581
+ "toSpliced",
2582
+ "toString",
2583
+ "toStringTag",
2584
+ "toString_revision",
2585
+ "toTemporalInstant",
2586
+ "toTimeString",
2587
+ "toUTCString",
2588
+ "toUpperCase",
2589
+ "toWellFormed",
2590
+ "toZonedDateTime",
2591
+ "toZonedDateTimeISO",
2592
+ "toint32",
2593
+ "toolbar",
2594
+ "top",
2595
+ "total",
2596
+ "touch",
2597
+ "transfer",
2598
+ "transferToFixedLength",
2599
+ "triggerEvent",
2600
+ "trim",
2601
+ "trimEnd",
2602
+ "trimStart",
2603
+ "trunc",
2604
+ "trustedTypes",
2605
+ "try",
2606
+ "undebug",
2607
+ "undefined",
2608
+ "unescape",
2609
+ "unicode",
2610
+ "unicodeSets",
2611
+ "unicode_code_point_escapes",
2612
+ "union",
2613
+ "uniq",
2614
+ "unmonitor",
2615
+ "unmonitorEvents",
2616
+ "unregister",
2617
+ "unsafeWindow",
2618
+ "unscopables",
2619
+ "unshift",
2620
+ "until",
2621
+ "use",
2622
+ "utc_offset",
2623
+ "valueOf",
2624
+ "values",
2625
+ "variants",
2626
+ "version",
2627
+ "vi",
2628
+ "viewport",
2629
+ "visit",
2630
+ "visualViewport",
2631
+ "vitest",
2632
+ "wait",
2633
+ "waitAsync",
2634
+ "waits",
2635
+ "waitsFor",
2636
+ "waitsForPromise",
2637
+ "webkitRequestFileSystem",
2638
+ "webkitRequestFileSystemSync",
2639
+ "webkitResolveLocalFileSystemSyncURL",
2640
+ "webkitResolveLocalFileSystemURL",
2641
+ "weekOfYear",
2642
+ "weeks",
2643
+ "well_formed_stringify",
2644
+ "when",
2645
+ "which",
2646
+ "window",
2647
+ "with",
2648
+ "withCalendar",
2649
+ "withDefaults",
2650
+ "withPlainTime",
2651
+ "withResolvers",
2652
+ "withTimeZone",
2653
+ "xcontext",
2654
+ "xdescribe",
2655
+ "xit",
2656
+ "xor",
2657
+ "xspecify",
2658
+ "xtest",
2659
+ "year",
2660
+ "yearOfWeek",
2661
+ "years",
2662
+ "zip",
2663
+ "zipKeyed",
2664
+ "zonedDateTimeISO"
2665
+ ]);
2666
+ //#endregion
2667
+ //#region src/internal/hash.ts
2668
+ /**
2669
+ * @license
2670
+ * SPDX-License-Identifier: MIT
2671
+ */
2672
+ const ALPHA_CHARS = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
2673
+ const BASE62_CHARS = `${ALPHA_CHARS}0123456789`;
2674
+ const ALPHA_LEN = BigInt(52);
2675
+ const BASE62_LEN = BigInt(BASE62_CHARS.length);
2676
+ const createHasher = (secret) => {
2677
+ const base62TailLength = 6;
2678
+ if (base62TailLength < 0 || base62TailLength > 9) throw new Error("Invalid MAX_HASH_LENGTH");
2679
+ const cache = /* @__PURE__ */ new Map();
2680
+ return (input) => {
2681
+ if (cache.has(input)) return cache.get(input);
2682
+ const info = VIRTUAL_PUBLIC_MODULE_ID;
2683
+ let retry = 0;
2684
+ let result;
2685
+ do {
2686
+ const r = retry.toString();
2687
+ const payload = `16:${info}|${input.length}:${input}|${r.length}:${r}`;
2688
+ const buffer = createHmac("sha256", secret).update(payload).digest("hex");
2689
+ let entropy = BigInt(`0x${buffer}`);
2690
+ result = "";
2691
+ result += ALPHA_CHARS[Number(entropy % ALPHA_LEN)];
2692
+ entropy /= ALPHA_LEN;
2693
+ for (let i = 0; i < base62TailLength; i++) {
2694
+ result += BASE62_CHARS[Number(entropy % BASE62_LEN)];
2695
+ entropy /= BASE62_LEN;
2696
+ }
2697
+ retry++;
2698
+ } while (_virtual_virtual_blacklist_default.has(result));
2699
+ cache.set(input, result);
2700
+ return result;
2701
+ };
2702
+ };
2703
+ const shuffle = (str, secret, salt) => {
2704
+ const arr = Array.from(str);
2705
+ const keyingMaterial = hkdfSync("sha256", secret, salt, VIRTUAL_MODULE_ID, (arr.length - 1) * 4);
2706
+ const prngBuffer = Buffer.from(keyingMaterial);
2707
+ let byteOffset = 0;
2708
+ for (let i = arr.length - 1; i > 0; i--) {
2709
+ const random32 = prngBuffer.readUInt32BE(byteOffset);
2710
+ byteOffset += 4;
2711
+ const j = random32 % (i + 1);
2712
+ const temp = arr[i];
2713
+ arr[i] = arr[j];
2714
+ arr[j] = temp;
2715
+ }
2716
+ return arr.join("");
2717
+ };
2718
+ const createCounter = (secret) => {
2719
+ const shuffledAlpha = shuffle(ALPHA_CHARS, secret, "alpha");
2720
+ const shuffledBase62 = shuffle(BASE62_CHARS, secret, "base62");
2721
+ let index = 0;
2722
+ const cache = /* @__PURE__ */ new Map();
2723
+ return (input) => {
2724
+ if (cache.has(input)) return cache.get(input);
2725
+ let result;
2726
+ do {
2727
+ result = "";
2728
+ let current = index;
2729
+ index++;
2730
+ result += shuffledAlpha[current % shuffledAlpha.length];
2731
+ current = Math.floor(current / shuffledAlpha.length);
2732
+ while (current > 0) {
2733
+ current--;
2734
+ result += shuffledBase62[current % shuffledBase62.length];
2735
+ current = Math.floor(current / shuffledBase62.length);
2736
+ }
2737
+ } while (_virtual_virtual_blacklist_default.has(result));
2738
+ cache.set(input, result);
2739
+ return result;
2740
+ };
2741
+ };
2742
+ //#endregion
2743
+ export { transformCode as a, VIRTUAL_MODULE_ID as c, extractKeywords as i, VIRTUAL_PUBLIC_MODULE_ID as l, createHasher as n, encodeIdentifier as o, createRunner as r, PLUGIN_NAME as s, createCounter as t };
2744
+
2745
+ //# sourceMappingURL=hash-Bqp-2TPm.js.map