importmap-rails 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,845 +1,847 @@
1
- /* ES Module Shims 1.5.5 */
1
+ /* ES Module Shims 1.5.6 */
2
2
  (function () {
3
3
 
4
- const noop = () => {};
5
-
6
- const optionsScript = document.querySelector('script[type=esms-options]');
7
-
8
- const esmsInitOptions = optionsScript ? JSON.parse(optionsScript.innerHTML) : {};
9
- Object.assign(esmsInitOptions, self.esmsInitOptions || {});
10
-
11
- let shimMode = !!esmsInitOptions.shimMode;
12
-
13
- const importHook = globalHook(shimMode && esmsInitOptions.onimport);
14
- const resolveHook = globalHook(shimMode && esmsInitOptions.resolve);
15
- let fetchHook = esmsInitOptions.fetch ? globalHook(esmsInitOptions.fetch) : fetch;
16
- const metaHook = esmsInitOptions.meta ? globalHook(shimModule && esmsInitOptions.meta) : noop;
17
-
18
- const skip = esmsInitOptions.skip ? new RegExp(esmsInitOptions.skip) : null;
19
-
20
- let nonce = esmsInitOptions.nonce;
21
-
22
- const mapOverrides = esmsInitOptions.mapOverrides;
23
-
24
- if (!nonce) {
25
- const nonceElement = document.querySelector('script[nonce]');
26
- if (nonceElement)
27
- nonce = nonceElement.nonce || nonceElement.getAttribute('nonce');
28
- }
29
-
30
- const onerror = globalHook(esmsInitOptions.onerror || noop);
31
- const onpolyfill = esmsInitOptions.onpolyfill ? globalHook(esmsInitOptions.onpolyfill) : () => {
32
- console.log('%c^^ Module TypeError above is polyfilled and can be ignored ^^', 'font-weight:900;color:#391');
33
- };
34
-
35
- const { revokeBlobURLs, noLoadEventRetriggers, enforceIntegrity } = esmsInitOptions;
36
-
37
- function globalHook (name) {
38
- return typeof name === 'string' ? self[name] : name;
39
- }
40
-
41
- const enable = Array.isArray(esmsInitOptions.polyfillEnable) ? esmsInitOptions.polyfillEnable : [];
42
- const cssModulesEnabled = enable.includes('css-modules');
43
- const jsonModulesEnabled = enable.includes('json-modules');
44
-
45
- function setShimMode () {
46
- shimMode = true;
47
- }
48
-
49
- const edge = !navigator.userAgentData && !!navigator.userAgent.match(/Edge\/\d+\.\d+/);
50
-
51
- const baseUrl = document.baseURI;
52
-
53
- function createBlob (source, type = 'text/javascript') {
54
- return URL.createObjectURL(new Blob([source], { type }));
55
- }
56
-
57
- const eoop = err => setTimeout(() => { throw err });
58
-
59
- const throwError = err => { (window.reportError || window.safari && console.error || eoop)(err), void onerror(err); };
60
-
61
- function fromParent (parent) {
62
- return parent ? ` imported from ${parent}` : '';
63
- }
64
-
65
- const backslashRegEx = /\\/g;
66
-
67
- function isURL (url) {
68
- if (url.indexOf(':') === -1) return false;
69
- try {
70
- new URL(url);
71
- return true;
72
- }
73
- catch (_) {
74
- return false;
75
- }
76
- }
77
-
78
- /*
79
- * Import maps implementation
80
- *
81
- * To make lookups fast we pre-resolve the entire import map
82
- * and then match based on backtracked hash lookups
83
- *
84
- */
85
- function resolveUrl (relUrl, parentUrl) {
86
- return resolveIfNotPlainOrUrl(relUrl, parentUrl) || (isURL(relUrl) ? relUrl : resolveIfNotPlainOrUrl('./' + relUrl, parentUrl));
87
- }
88
-
89
- function resolveIfNotPlainOrUrl (relUrl, parentUrl) {
90
- // strip off any trailing query params or hashes
91
- const queryHashIndex = parentUrl.indexOf('?', parentUrl.indexOf('#') === -1 ? parentUrl.indexOf('#') : parentUrl.length);
92
- if (queryHashIndex !== -1)
93
- parentUrl = parentUrl.slice(0, queryHashIndex);
94
- if (relUrl.indexOf('\\') !== -1)
95
- relUrl = relUrl.replace(backslashRegEx, '/');
96
- // protocol-relative
97
- if (relUrl[0] === '/' && relUrl[1] === '/') {
98
- return parentUrl.slice(0, parentUrl.indexOf(':') + 1) + relUrl;
99
- }
100
- // relative-url
101
- else if (relUrl[0] === '.' && (relUrl[1] === '/' || relUrl[1] === '.' && (relUrl[2] === '/' || relUrl.length === 2 && (relUrl += '/')) ||
102
- relUrl.length === 1 && (relUrl += '/')) ||
103
- relUrl[0] === '/') {
104
- const parentProtocol = parentUrl.slice(0, parentUrl.indexOf(':') + 1);
105
- // Disabled, but these cases will give inconsistent results for deep backtracking
106
- //if (parentUrl[parentProtocol.length] !== '/')
107
- // throw new Error('Cannot resolve');
108
- // read pathname from parent URL
109
- // pathname taken to be part after leading "/"
110
- let pathname;
111
- if (parentUrl[parentProtocol.length + 1] === '/') {
112
- // resolving to a :// so we need to read out the auth and host
113
- if (parentProtocol !== 'file:') {
114
- pathname = parentUrl.slice(parentProtocol.length + 2);
115
- pathname = pathname.slice(pathname.indexOf('/') + 1);
116
- }
117
- else {
118
- pathname = parentUrl.slice(8);
119
- }
120
- }
121
- else {
122
- // resolving to :/ so pathname is the /... part
123
- pathname = parentUrl.slice(parentProtocol.length + (parentUrl[parentProtocol.length] === '/'));
124
- }
125
-
126
- if (relUrl[0] === '/')
127
- return parentUrl.slice(0, parentUrl.length - pathname.length - 1) + relUrl;
128
-
129
- // join together and split for removal of .. and . segments
130
- // looping the string instead of anything fancy for perf reasons
131
- // '../../../../../z' resolved to 'x/y' is just 'z'
132
- const segmented = pathname.slice(0, pathname.lastIndexOf('/') + 1) + relUrl;
133
-
134
- const output = [];
135
- let segmentIndex = -1;
136
- for (let i = 0; i < segmented.length; i++) {
137
- // busy reading a segment - only terminate on '/'
138
- if (segmentIndex !== -1) {
139
- if (segmented[i] === '/') {
140
- output.push(segmented.slice(segmentIndex, i + 1));
141
- segmentIndex = -1;
142
- }
143
- continue;
144
- }
145
- // new segment - check if it is relative
146
- else if (segmented[i] === '.') {
147
- // ../ segment
148
- if (segmented[i + 1] === '.' && (segmented[i + 2] === '/' || i + 2 === segmented.length)) {
149
- output.pop();
150
- i += 2;
151
- continue;
152
- }
153
- // ./ segment
154
- else if (segmented[i + 1] === '/' || i + 1 === segmented.length) {
155
- i += 1;
156
- continue;
157
- }
158
- }
159
- // it is the start of a new segment
160
- while (segmented[i] === '/') i++;
161
- segmentIndex = i;
162
- }
163
- // finish reading out the last segment
164
- if (segmentIndex !== -1)
165
- output.push(segmented.slice(segmentIndex));
166
- return parentUrl.slice(0, parentUrl.length - pathname.length) + output.join('');
167
- }
168
- }
169
-
170
- function resolveAndComposeImportMap (json, baseUrl, parentMap) {
171
- const outMap = { imports: Object.assign({}, parentMap.imports), scopes: Object.assign({}, parentMap.scopes) };
172
-
173
- if (json.imports)
174
- resolveAndComposePackages(json.imports, outMap.imports, baseUrl, parentMap);
175
-
176
- if (json.scopes)
177
- for (let s in json.scopes) {
178
- const resolvedScope = resolveUrl(s, baseUrl);
179
- resolveAndComposePackages(json.scopes[s], outMap.scopes[resolvedScope] || (outMap.scopes[resolvedScope] = {}), baseUrl, parentMap);
180
- }
181
-
182
- return outMap;
183
- }
184
-
185
- function getMatch (path, matchObj) {
186
- if (matchObj[path])
187
- return path;
188
- let sepIndex = path.length;
189
- do {
190
- const segment = path.slice(0, sepIndex + 1);
191
- if (segment in matchObj)
192
- return segment;
193
- } while ((sepIndex = path.lastIndexOf('/', sepIndex - 1)) !== -1)
194
- }
195
-
196
- function applyPackages (id, packages) {
197
- const pkgName = getMatch(id, packages);
198
- if (pkgName) {
199
- const pkg = packages[pkgName];
200
- if (pkg === null) return;
201
- return pkg + id.slice(pkgName.length);
202
- }
203
- }
204
-
205
-
206
- function resolveImportMap (importMap, resolvedOrPlain, parentUrl) {
207
- let scopeUrl = parentUrl && getMatch(parentUrl, importMap.scopes);
208
- while (scopeUrl) {
209
- const packageResolution = applyPackages(resolvedOrPlain, importMap.scopes[scopeUrl]);
210
- if (packageResolution)
211
- return packageResolution;
212
- scopeUrl = getMatch(scopeUrl.slice(0, scopeUrl.lastIndexOf('/')), importMap.scopes);
213
- }
214
- return applyPackages(resolvedOrPlain, importMap.imports) || resolvedOrPlain.indexOf(':') !== -1 && resolvedOrPlain;
215
- }
216
-
217
- function resolveAndComposePackages (packages, outPackages, baseUrl, parentMap) {
218
- for (let p in packages) {
219
- const resolvedLhs = resolveIfNotPlainOrUrl(p, baseUrl) || p;
220
- if ((!shimMode || !mapOverrides) && outPackages[resolvedLhs] && (outPackages[resolvedLhs] !== packages[resolvedLhs])) {
221
- throw Error(`Rejected map override "${resolvedLhs}" from ${outPackages[resolvedLhs]} to ${packages[resolvedLhs]}.`);
222
- }
223
- let target = packages[p];
224
- if (typeof target !== 'string')
225
- continue;
226
- const mapped = resolveImportMap(parentMap, resolveIfNotPlainOrUrl(target, baseUrl) || target, baseUrl);
227
- if (mapped) {
228
- outPackages[resolvedLhs] = mapped;
229
- continue;
230
- }
231
- console.warn(`Mapping "${p}" -> "${packages[p]}" does not resolve`);
232
- }
233
- }
234
-
235
- let err;
236
- window.addEventListener('error', _err => err = _err);
237
- function dynamicImportScript (url, { errUrl = url } = {}) {
238
- err = undefined;
239
- const src = createBlob(`import*as m from'${url}';self._esmsi=m`);
240
- const s = Object.assign(document.createElement('script'), { type: 'module', src });
241
- s.setAttribute('nonce', nonce);
242
- s.setAttribute('noshim', '');
243
- const p = new Promise((resolve, reject) => {
244
- // Safari is unique in supporting module script error events
245
- s.addEventListener('error', cb);
246
- s.addEventListener('load', cb);
247
-
248
- function cb (_err) {
249
- document.head.removeChild(s);
250
- if (self._esmsi) {
251
- resolve(self._esmsi, baseUrl);
252
- self._esmsi = undefined;
253
- }
254
- else {
255
- reject(!(_err instanceof Event) && _err || err && err.error || new Error(`Error loading or executing the graph of ${errUrl} (check the console for ${src}).`));
256
- err = undefined;
257
- }
258
- }
259
- });
260
- document.head.appendChild(s);
261
- return p;
262
- }
263
-
264
- let dynamicImport = dynamicImportScript;
265
-
266
- const supportsDynamicImportCheck = dynamicImportScript(createBlob('export default u=>import(u)')).then(_dynamicImport => {
267
- if (_dynamicImport)
268
- dynamicImport = _dynamicImport.default;
269
- return !!_dynamicImport;
4
+ const noop = () => {};
5
+
6
+ const optionsScript = document.querySelector('script[type=esms-options]');
7
+
8
+ const esmsInitOptions = optionsScript ? JSON.parse(optionsScript.innerHTML) : {};
9
+ Object.assign(esmsInitOptions, self.esmsInitOptions || {});
10
+
11
+ let shimMode = !!esmsInitOptions.shimMode;
12
+
13
+ const importHook = globalHook(shimMode && esmsInitOptions.onimport);
14
+ const resolveHook = globalHook(shimMode && esmsInitOptions.resolve);
15
+ let fetchHook = esmsInitOptions.fetch ? globalHook(esmsInitOptions.fetch) : fetch;
16
+ const metaHook = esmsInitOptions.meta ? globalHook(shimModule && esmsInitOptions.meta) : noop;
17
+
18
+ const skip = esmsInitOptions.skip ? new RegExp(esmsInitOptions.skip) : null;
19
+
20
+ let nonce = esmsInitOptions.nonce;
21
+
22
+ const mapOverrides = esmsInitOptions.mapOverrides;
23
+
24
+ if (!nonce) {
25
+ const nonceElement = document.querySelector('script[nonce]');
26
+ if (nonceElement)
27
+ nonce = nonceElement.nonce || nonceElement.getAttribute('nonce');
28
+ }
29
+
30
+ const onerror = globalHook(esmsInitOptions.onerror || noop);
31
+ const onpolyfill = esmsInitOptions.onpolyfill ? globalHook(esmsInitOptions.onpolyfill) : () => {
32
+ console.log('%c^^ Module TypeError above is polyfilled and can be ignored ^^', 'font-weight:900;color:#391');
33
+ };
34
+
35
+ const { revokeBlobURLs, noLoadEventRetriggers, enforceIntegrity } = esmsInitOptions;
36
+
37
+ function globalHook (name) {
38
+ return typeof name === 'string' ? self[name] : name;
39
+ }
40
+
41
+ const enable = Array.isArray(esmsInitOptions.polyfillEnable) ? esmsInitOptions.polyfillEnable : [];
42
+ const cssModulesEnabled = enable.includes('css-modules');
43
+ const jsonModulesEnabled = enable.includes('json-modules');
44
+
45
+ function setShimMode () {
46
+ shimMode = true;
47
+ }
48
+
49
+ const edge = !navigator.userAgentData && !!navigator.userAgent.match(/Edge\/\d+\.\d+/);
50
+
51
+ const baseUrl = document.baseURI;
52
+
53
+ function createBlob (source, type = 'text/javascript') {
54
+ return URL.createObjectURL(new Blob([source], { type }));
55
+ }
56
+
57
+ const eoop = err => setTimeout(() => { throw err });
58
+
59
+ const throwError = err => { (window.reportError || window.safari && console.error || eoop)(err), void onerror(err); };
60
+
61
+ function fromParent (parent) {
62
+ return parent ? ` imported from ${parent}` : '';
63
+ }
64
+
65
+ const backslashRegEx = /\\/g;
66
+
67
+ function isURL (url) {
68
+ if (url.indexOf(':') === -1) return false;
69
+ try {
70
+ new URL(url);
71
+ return true;
72
+ }
73
+ catch (_) {
74
+ return false;
75
+ }
76
+ }
77
+
78
+ /*
79
+ * Import maps implementation
80
+ *
81
+ * To make lookups fast we pre-resolve the entire import map
82
+ * and then match based on backtracked hash lookups
83
+ *
84
+ */
85
+ function resolveUrl (relUrl, parentUrl) {
86
+ return resolveIfNotPlainOrUrl(relUrl, parentUrl) || (isURL(relUrl) ? relUrl : resolveIfNotPlainOrUrl('./' + relUrl, parentUrl));
87
+ }
88
+
89
+ function resolveIfNotPlainOrUrl (relUrl, parentUrl) {
90
+ // strip off any trailing query params or hashes
91
+ const queryHashIndex = parentUrl.indexOf('?', parentUrl.indexOf('#') === -1 ? parentUrl.indexOf('#') : parentUrl.length);
92
+ if (queryHashIndex !== -1)
93
+ parentUrl = parentUrl.slice(0, queryHashIndex);
94
+ if (relUrl.indexOf('\\') !== -1)
95
+ relUrl = relUrl.replace(backslashRegEx, '/');
96
+ // protocol-relative
97
+ if (relUrl[0] === '/' && relUrl[1] === '/') {
98
+ return parentUrl.slice(0, parentUrl.indexOf(':') + 1) + relUrl;
99
+ }
100
+ // relative-url
101
+ else if (relUrl[0] === '.' && (relUrl[1] === '/' || relUrl[1] === '.' && (relUrl[2] === '/' || relUrl.length === 2 && (relUrl += '/')) ||
102
+ relUrl.length === 1 && (relUrl += '/')) ||
103
+ relUrl[0] === '/') {
104
+ const parentProtocol = parentUrl.slice(0, parentUrl.indexOf(':') + 1);
105
+ // Disabled, but these cases will give inconsistent results for deep backtracking
106
+ //if (parentUrl[parentProtocol.length] !== '/')
107
+ // throw new Error('Cannot resolve');
108
+ // read pathname from parent URL
109
+ // pathname taken to be part after leading "/"
110
+ let pathname;
111
+ if (parentUrl[parentProtocol.length + 1] === '/') {
112
+ // resolving to a :// so we need to read out the auth and host
113
+ if (parentProtocol !== 'file:') {
114
+ pathname = parentUrl.slice(parentProtocol.length + 2);
115
+ pathname = pathname.slice(pathname.indexOf('/') + 1);
116
+ }
117
+ else {
118
+ pathname = parentUrl.slice(8);
119
+ }
120
+ }
121
+ else {
122
+ // resolving to :/ so pathname is the /... part
123
+ pathname = parentUrl.slice(parentProtocol.length + (parentUrl[parentProtocol.length] === '/'));
124
+ }
125
+
126
+ if (relUrl[0] === '/')
127
+ return parentUrl.slice(0, parentUrl.length - pathname.length - 1) + relUrl;
128
+
129
+ // join together and split for removal of .. and . segments
130
+ // looping the string instead of anything fancy for perf reasons
131
+ // '../../../../../z' resolved to 'x/y' is just 'z'
132
+ const segmented = pathname.slice(0, pathname.lastIndexOf('/') + 1) + relUrl;
133
+
134
+ const output = [];
135
+ let segmentIndex = -1;
136
+ for (let i = 0; i < segmented.length; i++) {
137
+ // busy reading a segment - only terminate on '/'
138
+ if (segmentIndex !== -1) {
139
+ if (segmented[i] === '/') {
140
+ output.push(segmented.slice(segmentIndex, i + 1));
141
+ segmentIndex = -1;
142
+ }
143
+ continue;
144
+ }
145
+ // new segment - check if it is relative
146
+ else if (segmented[i] === '.') {
147
+ // ../ segment
148
+ if (segmented[i + 1] === '.' && (segmented[i + 2] === '/' || i + 2 === segmented.length)) {
149
+ output.pop();
150
+ i += 2;
151
+ continue;
152
+ }
153
+ // ./ segment
154
+ else if (segmented[i + 1] === '/' || i + 1 === segmented.length) {
155
+ i += 1;
156
+ continue;
157
+ }
158
+ }
159
+ // it is the start of a new segment
160
+ while (segmented[i] === '/') i++;
161
+ segmentIndex = i;
162
+ }
163
+ // finish reading out the last segment
164
+ if (segmentIndex !== -1)
165
+ output.push(segmented.slice(segmentIndex));
166
+ return parentUrl.slice(0, parentUrl.length - pathname.length) + output.join('');
167
+ }
168
+ }
169
+
170
+ function resolveAndComposeImportMap (json, baseUrl, parentMap) {
171
+ const outMap = { imports: Object.assign({}, parentMap.imports), scopes: Object.assign({}, parentMap.scopes) };
172
+
173
+ if (json.imports)
174
+ resolveAndComposePackages(json.imports, outMap.imports, baseUrl, parentMap);
175
+
176
+ if (json.scopes)
177
+ for (let s in json.scopes) {
178
+ const resolvedScope = resolveUrl(s, baseUrl);
179
+ resolveAndComposePackages(json.scopes[s], outMap.scopes[resolvedScope] || (outMap.scopes[resolvedScope] = {}), baseUrl, parentMap);
180
+ }
181
+
182
+ return outMap;
183
+ }
184
+
185
+ function getMatch (path, matchObj) {
186
+ if (matchObj[path])
187
+ return path;
188
+ let sepIndex = path.length;
189
+ do {
190
+ const segment = path.slice(0, sepIndex + 1);
191
+ if (segment in matchObj)
192
+ return segment;
193
+ } while ((sepIndex = path.lastIndexOf('/', sepIndex - 1)) !== -1)
194
+ }
195
+
196
+ function applyPackages (id, packages) {
197
+ const pkgName = getMatch(id, packages);
198
+ if (pkgName) {
199
+ const pkg = packages[pkgName];
200
+ if (pkg === null) return;
201
+ return pkg + id.slice(pkgName.length);
202
+ }
203
+ }
204
+
205
+
206
+ function resolveImportMap (importMap, resolvedOrPlain, parentUrl) {
207
+ let scopeUrl = parentUrl && getMatch(parentUrl, importMap.scopes);
208
+ while (scopeUrl) {
209
+ const packageResolution = applyPackages(resolvedOrPlain, importMap.scopes[scopeUrl]);
210
+ if (packageResolution)
211
+ return packageResolution;
212
+ scopeUrl = getMatch(scopeUrl.slice(0, scopeUrl.lastIndexOf('/')), importMap.scopes);
213
+ }
214
+ return applyPackages(resolvedOrPlain, importMap.imports) || resolvedOrPlain.indexOf(':') !== -1 && resolvedOrPlain;
215
+ }
216
+
217
+ function resolveAndComposePackages (packages, outPackages, baseUrl, parentMap) {
218
+ for (let p in packages) {
219
+ const resolvedLhs = resolveIfNotPlainOrUrl(p, baseUrl) || p;
220
+ if ((!shimMode || !mapOverrides) && outPackages[resolvedLhs] && (outPackages[resolvedLhs] !== packages[resolvedLhs])) {
221
+ throw Error(`Rejected map override "${resolvedLhs}" from ${outPackages[resolvedLhs]} to ${packages[resolvedLhs]}.`);
222
+ }
223
+ let target = packages[p];
224
+ if (typeof target !== 'string')
225
+ continue;
226
+ const mapped = resolveImportMap(parentMap, resolveIfNotPlainOrUrl(target, baseUrl) || target, baseUrl);
227
+ if (mapped) {
228
+ outPackages[resolvedLhs] = mapped;
229
+ continue;
230
+ }
231
+ console.warn(`Mapping "${p}" -> "${packages[p]}" does not resolve`);
232
+ }
233
+ }
234
+
235
+ let err;
236
+ window.addEventListener('error', _err => err = _err);
237
+ function dynamicImportScript (url, { errUrl = url } = {}) {
238
+ err = undefined;
239
+ const src = createBlob(`import*as m from'${url}';self._esmsi=m`);
240
+ const s = Object.assign(document.createElement('script'), { type: 'module', src });
241
+ s.setAttribute('nonce', nonce);
242
+ s.setAttribute('noshim', '');
243
+ const p = new Promise((resolve, reject) => {
244
+ // Safari is unique in supporting module script error events
245
+ s.addEventListener('error', cb);
246
+ s.addEventListener('load', cb);
247
+
248
+ function cb (_err) {
249
+ document.head.removeChild(s);
250
+ if (self._esmsi) {
251
+ resolve(self._esmsi, baseUrl);
252
+ self._esmsi = undefined;
253
+ }
254
+ else {
255
+ reject(!(_err instanceof Event) && _err || err && err.error || new Error(`Error loading or executing the graph of ${errUrl} (check the console for ${src}).`));
256
+ err = undefined;
257
+ }
258
+ }
259
+ });
260
+ document.head.appendChild(s);
261
+ return p;
262
+ }
263
+
264
+ let dynamicImport = dynamicImportScript;
265
+
266
+ const supportsDynamicImportCheck = dynamicImportScript(createBlob('export default u=>import(u)')).then(_dynamicImport => {
267
+ if (_dynamicImport)
268
+ dynamicImport = _dynamicImport.default;
269
+ return !!_dynamicImport;
270
270
  }, noop);
271
271
 
272
- // support browsers without dynamic import support (eg Firefox 6x)
273
- let supportsJsonAssertions = false;
274
- let supportsCssAssertions = false;
275
-
276
- let supportsImportMeta = false;
277
- let supportsImportMaps = false;
278
-
279
- let supportsDynamicImport = false;
280
-
281
- const featureDetectionPromise = Promise.resolve(supportsDynamicImportCheck).then(_supportsDynamicImport => {
282
- if (!_supportsDynamicImport)
283
- return;
284
- supportsDynamicImport = true;
285
-
286
- return Promise.all([
287
- dynamicImport(createBlob('import.meta')).then(() => supportsImportMeta = true, noop),
288
- cssModulesEnabled && dynamicImport(createBlob('import"data:text/css,{}"assert{type:"css"}')).then(() => supportsCssAssertions = true, noop),
289
- jsonModulesEnabled && dynamicImport(createBlob('import"data:text/json,{}"assert{type:"json"}')).then(() => supportsJsonAssertions = true, noop),
290
- HTMLScriptElement.supports ? supportsImportMaps = HTMLScriptElement.supports('importmap') : new Promise(resolve => {
291
- self._$s = v => {
292
- document.head.removeChild(iframe);
293
- if (v) supportsImportMaps = true;
294
- delete self._$s;
295
- resolve();
296
- };
297
- const iframe = document.createElement('iframe');
298
- iframe.style.display = 'none';
299
- iframe.setAttribute('nonce', nonce);
300
- iframe.srcdoc = `<script type=importmap nonce="${nonce}">{"imports":{"x":"data:text/javascript,"}}<${''}/script><script nonce="${nonce}">import('x').then(()=>1,()=>0).then(v=>parent._$s(v))<${''}/script>`;
301
- document.head.appendChild(iframe);
302
- })
303
- ]);
272
+ // support browsers without dynamic import support (eg Firefox 6x)
273
+ let supportsJsonAssertions = false;
274
+ let supportsCssAssertions = false;
275
+
276
+ let supportsImportMaps = HTMLScriptElement.supports ? HTMLScriptElement.supports('importmap') : false;
277
+ let supportsImportMeta = supportsImportMaps;
278
+ let supportsDynamicImport = false;
279
+
280
+ const featureDetectionPromise = Promise.resolve(supportsImportMaps || supportsDynamicImportCheck).then(_supportsDynamicImport => {
281
+ if (!_supportsDynamicImport)
282
+ return;
283
+ supportsDynamicImport = true;
284
+
285
+ return Promise.all([
286
+ supportsImportMaps || dynamicImport(createBlob('import.meta')).then(() => supportsImportMeta = true, noop),
287
+ cssModulesEnabled && dynamicImport(createBlob('import"data:text/css,{}"assert{type:"css"}')).then(() => supportsCssAssertions = true, noop),
288
+ jsonModulesEnabled && dynamicImport(createBlob('import"data:text/json,{}"assert{type:"json"}')).then(() => supportsJsonAssertions = true, noop),
289
+ supportsImportMaps || new Promise(resolve => {
290
+ self._$s = v => {
291
+ document.head.removeChild(iframe);
292
+ if (v) supportsImportMaps = true;
293
+ delete self._$s;
294
+ resolve();
295
+ };
296
+ const iframe = document.createElement('iframe');
297
+ iframe.style.display = 'none';
298
+ iframe.setAttribute('nonce', nonce);
299
+ document.head.appendChild(iframe);
300
+ // we use document.write here because eg Weixin built-in browser doesn't support setting srcdoc
301
+ // setting src to a blob URL results in a navigation event in webviews
302
+ // setting srcdoc is not supported in React native webviews on iOS
303
+ iframe.contentWindow.document.write(`<script type=importmap nonce="${nonce}">{"imports":{"x":"data:text/javascript,"}}<${''}/script><script nonce="${nonce}">import('x').then(()=>1,()=>0).then(v=>parent._$s(v))<${''}/script>`);
304
+ })
305
+ ]);
304
306
  });
305
307
 
306
308
  /* es-module-lexer 0.10.5 */
307
309
  let e,a,r,s=2<<19;const i=1===new Uint8Array(new Uint16Array([1]).buffer)[0]?function(e,a){const r=e.length;let s=0;for(;s<r;)a[s]=e.charCodeAt(s++);}:function(e,a){const r=e.length;let s=0;for(;s<r;){const r=e.charCodeAt(s);a[s++]=(255&r)<<8|r>>>8;}},t="xportmportlassetafromssertvoyiedeleinstantyreturdebuggeawaithrwhileforifcatcfinallels";let c$1,f,n;function parse(k,l="@"){c$1=k,f=l;const u=2*c$1.length+(2<<18);if(u>s||!e){for(;u>s;)s*=2;a=new ArrayBuffer(s),i(t,new Uint16Array(a,16,85)),e=function(e,a,r){"use asm";var s=new e.Int8Array(r),i=new e.Int16Array(r),t=new e.Int32Array(r),c=new e.Uint8Array(r),f=new e.Uint16Array(r),n=992;function b(e){e=e|0;var a=0,r=0,c=0,b=0,u=0,w=0,v=0;v=n;n=n+11520|0;u=v+2048|0;s[763]=1;i[377]=0;i[378]=0;i[379]=0;i[380]=-1;t[57]=t[2];s[764]=0;t[56]=0;s[762]=0;t[58]=v+10496;t[59]=v+2304;t[60]=v;s[765]=0;e=(t[3]|0)+-2|0;t[61]=e;a=e+(t[54]<<1)|0;t[62]=a;e:while(1){r=e+2|0;t[61]=r;if(e>>>0>=a>>>0){b=18;break}a:do{switch(i[r>>1]|0){case 9:case 10:case 11:case 12:case 13:case 32:break;case 101:{if((((i[379]|0)==0?D(r)|0:0)?(m(e+4|0,16,10)|0)==0:0)?(k(),(s[763]|0)==0):0){b=9;break e}else b=17;break}case 105:{if(D(r)|0?(m(e+4|0,26,10)|0)==0:0){l();b=17;}else b=17;break}case 59:{b=17;break}case 47:switch(i[e+4>>1]|0){case 47:{j();break a}case 42:{y(1);break a}default:{b=16;break e}}default:{b=16;break e}}}while(0);if((b|0)==17){b=0;t[57]=t[61];}e=t[61]|0;a=t[62]|0;}if((b|0)==9){e=t[61]|0;t[57]=e;b=19;}else if((b|0)==16){s[763]=0;t[61]=e;b=19;}else if((b|0)==18)if(!(s[762]|0)){e=r;b=19;}else e=0;do{if((b|0)==19){e:while(1){a=e+2|0;t[61]=a;c=a;if(e>>>0>=(t[62]|0)>>>0){b=75;break}a:do{switch(i[a>>1]|0){case 9:case 10:case 11:case 12:case 13:case 32:break;case 101:{if(((i[379]|0)==0?D(a)|0:0)?(m(e+4|0,16,10)|0)==0:0){k();b=74;}else b=74;break}case 105:{if(D(a)|0?(m(e+4|0,26,10)|0)==0:0){l();b=74;}else b=74;break}case 99:{if((D(a)|0?(m(e+4|0,36,8)|0)==0:0)?M(i[e+12>>1]|0)|0:0){s[765]=1;b=74;}else b=74;break}case 40:{r=t[57]|0;c=t[59]|0;b=i[379]|0;i[379]=b+1<<16>>16;t[c+((b&65535)<<2)>>2]=r;b=74;break}case 41:{a=i[379]|0;if(!(a<<16>>16)){b=36;break e}a=a+-1<<16>>16;i[379]=a;r=i[378]|0;if(r<<16>>16!=0?(w=t[(t[60]|0)+((r&65535)+-1<<2)>>2]|0,(t[w+20>>2]|0)==(t[(t[59]|0)+((a&65535)<<2)>>2]|0)):0){a=w+4|0;if(!(t[a>>2]|0))t[a>>2]=c;t[w+12>>2]=e+4;i[378]=r+-1<<16>>16;b=74;}else b=74;break}case 123:{b=t[57]|0;c=t[51]|0;e=b;do{if((i[b>>1]|0)==41&(c|0)!=0?(t[c+4>>2]|0)==(b|0):0){a=t[52]|0;t[51]=a;if(!a){t[47]=0;break}else {t[a+28>>2]=0;break}}}while(0);r=i[379]|0;b=r&65535;s[u+b>>0]=s[765]|0;s[765]=0;c=t[59]|0;i[379]=r+1<<16>>16;t[c+(b<<2)>>2]=e;b=74;break}case 125:{e=i[379]|0;if(!(e<<16>>16)){b=49;break e}r=e+-1<<16>>16;i[379]=r;a=i[380]|0;if(e<<16>>16!=a<<16>>16)if(a<<16>>16!=-1&(r&65535)<(a&65535)){b=53;break e}else {b=74;break a}else {c=t[58]|0;b=(i[377]|0)+-1<<16>>16;i[377]=b;i[380]=i[c+((b&65535)<<1)>>1]|0;h();b=74;break a}}case 39:{d(39);b=74;break}case 34:{d(34);b=74;break}case 47:switch(i[e+4>>1]|0){case 47:{j();break a}case 42:{y(1);break a}default:{a=t[57]|0;r=i[a>>1]|0;r:do{if(!(U(r)|0)){switch(r<<16>>16){case 41:if(q(t[(t[59]|0)+(f[379]<<2)>>2]|0)|0){b=71;break r}else {b=68;break r}case 125:break;default:{b=68;break r}}e=f[379]|0;if(!(p(t[(t[59]|0)+(e<<2)>>2]|0)|0)?(s[u+e>>0]|0)==0:0)b=68;else b=71;}else switch(r<<16>>16){case 46:if(((i[a+-2>>1]|0)+-48&65535)<10){b=68;break r}else {b=71;break r}case 43:if((i[a+-2>>1]|0)==43){b=68;break r}else {b=71;break r}case 45:if((i[a+-2>>1]|0)==45){b=68;break r}else {b=71;break r}default:{b=71;break r}}}while(0);r:do{if((b|0)==68){b=0;if(!(o(a)|0)){switch(r<<16>>16){case 0:{b=71;break r}case 47:break;default:{e=1;break r}}if(!(s[764]|0))e=1;else b=71;}else b=71;}}while(0);if((b|0)==71){g();e=0;}s[764]=e;b=74;break a}}case 96:{h();b=74;break}default:b=74;}}while(0);if((b|0)==74){b=0;t[57]=t[61];}e=t[61]|0;}if((b|0)==36){L();e=0;break}else if((b|0)==49){L();e=0;break}else if((b|0)==53){L();e=0;break}else if((b|0)==75){e=(i[380]|0)==-1&(i[379]|0)==0&(s[762]|0)==0&(i[378]|0)==0;break}}}while(0);n=v;return e|0}function k(){var e=0,a=0,r=0,c=0,f=0,n=0;f=t[61]|0;n=f+12|0;t[61]=n;a=w(1)|0;e=t[61]|0;if(!((e|0)==(n|0)?!(I(a)|0):0))c=3;e:do{if((c|0)==3){a:do{switch(a<<16>>16){case 100:{B(e,e+14|0);break e}case 97:{t[61]=e+10;w(1)|0;e=t[61]|0;c=6;break}case 102:{c=6;break}case 99:{if((m(e+2|0,36,8)|0)==0?(r=e+10|0,$(i[r>>1]|0)|0):0){t[61]=r;f=w(1)|0;n=t[61]|0;E(f)|0;B(n,t[61]|0);t[61]=(t[61]|0)+-2;break e}e=e+4|0;t[61]=e;c=13;break}case 108:case 118:{c=13;break}case 123:{t[61]=e+2;e=w(1)|0;r=t[61]|0;while(1){if(N(e)|0){d(e);e=(t[61]|0)+2|0;t[61]=e;}else {E(e)|0;e=t[61]|0;}w(1)|0;e=C(r,e)|0;if(e<<16>>16==44){t[61]=(t[61]|0)+2;e=w(1)|0;}a=r;r=t[61]|0;if(e<<16>>16==125){c=32;break}if((r|0)==(a|0)){c=29;break}if(r>>>0>(t[62]|0)>>>0){c=31;break}}if((c|0)==29){L();break e}else if((c|0)==31){L();break e}else if((c|0)==32){t[61]=r+2;c=34;break a}break}case 42:{t[61]=e+2;w(1)|0;c=t[61]|0;C(c,c)|0;c=34;break}default:{}}}while(0);if((c|0)==6){t[61]=e+16;e=w(1)|0;if(e<<16>>16==42){t[61]=(t[61]|0)+2;e=w(1)|0;}n=t[61]|0;E(e)|0;B(n,t[61]|0);t[61]=(t[61]|0)+-2;break}else if((c|0)==13){e=e+4|0;t[61]=e;s[763]=0;a:while(1){t[61]=e+2;n=w(1)|0;e=t[61]|0;switch((E(n)|0)<<16>>16){case 91:case 123:{c=15;break a}default:{}}a=t[61]|0;if((a|0)==(e|0))break e;B(e,a);switch((w(1)|0)<<16>>16){case 61:{c=19;break a}case 44:break;default:{c=20;break a}}e=t[61]|0;}if((c|0)==15){t[61]=(t[61]|0)+-2;break}else if((c|0)==19){t[61]=(t[61]|0)+-2;break}else if((c|0)==20){t[61]=(t[61]|0)+-2;break}}else if((c|0)==34)a=w(1)|0;e=t[61]|0;if(a<<16>>16==102?(m(e+2|0,52,6)|0)==0:0){t[61]=e+8;u(f,w(1)|0);break}t[61]=e+-2;}}while(0);return}function l(){var e=0,a=0,r=0,c=0,f=0;f=t[61]|0;a=f+12|0;t[61]=a;e:do{switch((w(1)|0)<<16>>16){case 40:{e=t[61]|0;a=t[59]|0;r=i[379]|0;i[379]=r+1<<16>>16;t[a+((r&65535)<<2)>>2]=e;if((i[t[57]>>1]|0)!=46){e=t[61]|0;t[61]=e+2;r=w(1)|0;v(f,t[61]|0,0,e);e=t[51]|0;a=t[60]|0;f=i[378]|0;i[378]=f+1<<16>>16;t[a+((f&65535)<<2)>>2]=e;switch(r<<16>>16){case 39:{d(39);break}case 34:{d(34);break}default:{t[61]=(t[61]|0)+-2;break e}}e=(t[61]|0)+2|0;t[61]=e;switch((w(1)|0)<<16>>16){case 44:{t[61]=(t[61]|0)+2;w(1)|0;r=t[51]|0;t[r+4>>2]=e;f=t[61]|0;t[r+16>>2]=f;s[r+24>>0]=1;t[61]=f+-2;break e}case 41:{i[379]=(i[379]|0)+-1<<16>>16;f=t[51]|0;t[f+4>>2]=e;t[f+12>>2]=(t[61]|0)+2;s[f+24>>0]=1;i[378]=(i[378]|0)+-1<<16>>16;break e}default:{t[61]=(t[61]|0)+-2;break e}}}break}case 46:{t[61]=(t[61]|0)+2;if(((w(1)|0)<<16>>16==109?(e=t[61]|0,(m(e+2|0,44,6)|0)==0):0)?(i[t[57]>>1]|0)!=46:0)v(f,f,e+8|0,2);break}case 42:case 39:case 34:{c=16;break}case 123:{e=t[61]|0;if(i[379]|0){t[61]=e+-2;break e}while(1){if(e>>>0>=(t[62]|0)>>>0)break;e=w(1)|0;if(!(N(e)|0)){if(e<<16>>16==125){c=31;break}}else d(e);e=(t[61]|0)+2|0;t[61]=e;}if((c|0)==31)t[61]=(t[61]|0)+2;w(1)|0;e=t[61]|0;if(m(e,50,8)|0){L();break e}t[61]=e+8;e=w(1)|0;if(N(e)|0){u(f,e);break e}else {L();break e}}default:if((t[61]|0)!=(a|0))c=16;}}while(0);do{if((c|0)==16){if(i[379]|0){t[61]=(t[61]|0)+-2;break}e=t[62]|0;a=t[61]|0;while(1){if(a>>>0>=e>>>0){c=23;break}r=i[a>>1]|0;if(N(r)|0){c=21;break}c=a+2|0;t[61]=c;a=c;}if((c|0)==21){u(f,r);break}else if((c|0)==23){L();break}}}while(0);return}function u(e,a){e=e|0;a=a|0;var r=0,s=0;r=(t[61]|0)+2|0;switch(a<<16>>16){case 39:{d(39);s=5;break}case 34:{d(34);s=5;break}default:L();}do{if((s|0)==5){v(e,r,t[61]|0,1);t[61]=(t[61]|0)+2;s=(w(0)|0)<<16>>16==97;a=t[61]|0;if(s?(m(a+2|0,58,10)|0)==0:0){t[61]=a+12;if((w(1)|0)<<16>>16!=123){t[61]=a;break}e=t[61]|0;r=e;e:while(1){t[61]=r+2;r=w(1)|0;switch(r<<16>>16){case 39:{d(39);t[61]=(t[61]|0)+2;r=w(1)|0;break}case 34:{d(34);t[61]=(t[61]|0)+2;r=w(1)|0;break}default:r=E(r)|0;}if(r<<16>>16!=58){s=16;break}t[61]=(t[61]|0)+2;switch((w(1)|0)<<16>>16){case 39:{d(39);break}case 34:{d(34);break}default:{s=20;break e}}t[61]=(t[61]|0)+2;switch((w(1)|0)<<16>>16){case 125:{s=25;break e}case 44:break;default:{s=24;break e}}t[61]=(t[61]|0)+2;if((w(1)|0)<<16>>16==125){s=25;break}r=t[61]|0;}if((s|0)==16){t[61]=a;break}else if((s|0)==20){t[61]=a;break}else if((s|0)==24){t[61]=a;break}else if((s|0)==25){s=t[51]|0;t[s+16>>2]=e;t[s+12>>2]=(t[61]|0)+2;break}}t[61]=a+-2;}}while(0);return}function o(e){e=e|0;e:do{switch(i[e>>1]|0){case 100:switch(i[e+-2>>1]|0){case 105:{e=S(e+-4|0,68,2)|0;break e}case 108:{e=S(e+-4|0,72,3)|0;break e}default:{e=0;break e}}case 101:{switch(i[e+-2>>1]|0){case 115:break;case 116:{e=S(e+-4|0,78,4)|0;break e}default:{e=0;break e}}switch(i[e+-4>>1]|0){case 108:{e=O(e+-6|0,101)|0;break e}case 97:{e=O(e+-6|0,99)|0;break e}default:{e=0;break e}}}case 102:{if((i[e+-2>>1]|0)==111?(i[e+-4>>1]|0)==101:0)switch(i[e+-6>>1]|0){case 99:{e=S(e+-8|0,86,6)|0;break e}case 112:{e=S(e+-8|0,98,2)|0;break e}default:{e=0;break e}}else e=0;break}case 110:{e=e+-2|0;if(O(e,105)|0)e=1;else e=S(e,102,5)|0;break}case 111:{e=O(e+-2|0,100)|0;break}case 114:{e=S(e+-2|0,112,7)|0;break}case 116:{e=S(e+-2|0,126,4)|0;break}case 119:switch(i[e+-2>>1]|0){case 101:{e=O(e+-4|0,110)|0;break e}case 111:{e=S(e+-4|0,134,3)|0;break e}default:{e=0;break e}}default:e=0;}}while(0);return e|0}function h(){var e=0,a=0,r=0;a=t[62]|0;r=t[61]|0;e:while(1){e=r+2|0;if(r>>>0>=a>>>0){a=8;break}switch(i[e>>1]|0){case 96:{a=9;break e}case 36:{if((i[r+4>>1]|0)==123){a=6;break e}break}case 92:{e=r+4|0;break}default:{}}r=e;}if((a|0)==6){t[61]=r+4;e=i[380]|0;a=t[58]|0;r=i[377]|0;i[377]=r+1<<16>>16;i[a+((r&65535)<<1)>>1]=e;r=(i[379]|0)+1<<16>>16;i[379]=r;i[380]=r;}else if((a|0)==8){t[61]=e;L();}else if((a|0)==9)t[61]=e;return}function w(e){e=e|0;var a=0,r=0,s=0;r=t[61]|0;e:do{a=i[r>>1]|0;a:do{if(a<<16>>16!=47)if(e)if(M(a)|0)break;else break e;else if(z(a)|0)break;else break e;else switch(i[r+2>>1]|0){case 47:{j();break a}case 42:{y(e);break a}default:{a=47;break e}}}while(0);s=t[61]|0;r=s+2|0;t[61]=r;}while(s>>>0<(t[62]|0)>>>0);return a|0}function d(e){e=e|0;var a=0,r=0,s=0,c=0;c=t[62]|0;a=t[61]|0;while(1){s=a+2|0;if(a>>>0>=c>>>0){a=9;break}r=i[s>>1]|0;if(r<<16>>16==e<<16>>16){a=10;break}if(r<<16>>16==92){r=a+4|0;if((i[r>>1]|0)==13){a=a+6|0;a=(i[a>>1]|0)==10?a:r;}else a=r;}else if(T(r)|0){a=9;break}else a=s;}if((a|0)==9){t[61]=s;L();}else if((a|0)==10)t[61]=s;return}function v(e,a,r,i){e=e|0;a=a|0;r=r|0;i=i|0;var c=0,f=0;c=t[55]|0;t[55]=c+32;f=t[51]|0;t[((f|0)==0?188:f+28|0)>>2]=c;t[52]=f;t[51]=c;t[c+8>>2]=e;if(2==(i|0))e=r;else e=1==(i|0)?r+2|0:0;t[c+12>>2]=e;t[c>>2]=a;t[c+4>>2]=r;t[c+16>>2]=0;t[c+20>>2]=i;s[c+24>>0]=1==(i|0)&1;t[c+28>>2]=0;return}function A(){var e=0,a=0,r=0;r=t[62]|0;a=t[61]|0;e:while(1){e=a+2|0;if(a>>>0>=r>>>0){a=6;break}switch(i[e>>1]|0){case 13:case 10:{a=6;break e}case 93:{a=7;break e}case 92:{e=a+4|0;break}default:{}}a=e;}if((a|0)==6){t[61]=e;L();e=0;}else if((a|0)==7){t[61]=e;e=93;}return e|0}function C(e,a){e=e|0;a=a|0;var r=0,s=0;r=t[61]|0;s=i[r>>1]|0;if(s<<16>>16==97){t[61]=r+4;r=w(1)|0;e=t[61]|0;if(N(r)|0){d(r);a=(t[61]|0)+2|0;t[61]=a;}else {E(r)|0;a=t[61]|0;}s=w(1)|0;r=t[61]|0;}if((r|0)!=(e|0))B(e,a);return s|0}function g(){var e=0,a=0,r=0;e:while(1){e=t[61]|0;a=e+2|0;t[61]=a;if(e>>>0>=(t[62]|0)>>>0){r=7;break}switch(i[a>>1]|0){case 13:case 10:{r=7;break e}case 47:break e;case 91:{A()|0;break}case 92:{t[61]=e+4;break}default:{}}}if((r|0)==7)L();return}function p(e){e=e|0;switch(i[e>>1]|0){case 62:{e=(i[e+-2>>1]|0)==61;break}case 41:case 59:{e=1;break}case 104:{e=S(e+-2|0,160,4)|0;break}case 121:{e=S(e+-2|0,168,6)|0;break}case 101:{e=S(e+-2|0,180,3)|0;break}default:e=0;}return e|0}function y(e){e=e|0;var a=0,r=0,s=0,c=0,f=0;c=(t[61]|0)+2|0;t[61]=c;r=t[62]|0;while(1){a=c+2|0;if(c>>>0>=r>>>0)break;s=i[a>>1]|0;if(!e?T(s)|0:0)break;if(s<<16>>16==42?(i[c+4>>1]|0)==47:0){f=8;break}c=a;}if((f|0)==8){t[61]=a;a=c+4|0;}t[61]=a;return}function m(e,a,r){e=e|0;a=a|0;r=r|0;var i=0,t=0;e:do{if(!r)e=0;else {while(1){i=s[e>>0]|0;t=s[a>>0]|0;if(i<<24>>24!=t<<24>>24)break;r=r+-1|0;if(!r){e=0;break e}else {e=e+1|0;a=a+1|0;}}e=(i&255)-(t&255)|0;}}while(0);return e|0}function I(e){e=e|0;e:do{switch(e<<16>>16){case 38:case 37:case 33:{e=1;break}default:if((e&-8)<<16>>16==40|(e+-58&65535)<6)e=1;else {switch(e<<16>>16){case 91:case 93:case 94:{e=1;break e}default:{}}e=(e+-123&65535)<4;}}}while(0);return e|0}function U(e){e=e|0;e:do{switch(e<<16>>16){case 38:case 37:case 33:break;default:if(!((e+-58&65535)<6|(e+-40&65535)<7&e<<16>>16!=41)){switch(e<<16>>16){case 91:case 94:break e;default:{}}return e<<16>>16!=125&(e+-123&65535)<4|0}}}while(0);return 1}function x(e){e=e|0;var a=0,r=0,s=0,c=0;r=n;n=n+16|0;s=r;t[s>>2]=0;t[54]=e;a=t[3]|0;c=a+(e<<1)|0;e=c+2|0;i[c>>1]=0;t[s>>2]=e;t[55]=e;t[47]=0;t[51]=0;t[49]=0;t[48]=0;t[53]=0;t[50]=0;n=r;return a|0}function S(e,a,r){e=e|0;a=a|0;r=r|0;var s=0,c=0;s=e+(0-r<<1)|0;c=s+2|0;e=t[3]|0;if(c>>>0>=e>>>0?(m(c,a,r<<1)|0)==0:0)if((c|0)==(e|0))e=1;else e=$(i[s>>1]|0)|0;else e=0;return e|0}function O(e,a){e=e|0;a=a|0;var r=0;r=t[3]|0;if(r>>>0<=e>>>0?(i[e>>1]|0)==a<<16>>16:0)if((r|0)==(e|0))r=1;else r=$(i[e+-2>>1]|0)|0;else r=0;return r|0}function $(e){e=e|0;e:do{if((e+-9&65535)<5)e=1;else {switch(e<<16>>16){case 32:case 160:{e=1;break e}default:{}}e=e<<16>>16!=46&(I(e)|0);}}while(0);return e|0}function j(){var e=0,a=0,r=0;e=t[62]|0;r=t[61]|0;e:while(1){a=r+2|0;if(r>>>0>=e>>>0)break;switch(i[a>>1]|0){case 13:case 10:break e;default:r=a;}}t[61]=a;return}function B(e,a){e=e|0;a=a|0;var r=0,s=0;r=t[55]|0;t[55]=r+12;s=t[53]|0;t[((s|0)==0?192:s+8|0)>>2]=r;t[53]=r;t[r>>2]=e;t[r+4>>2]=a;t[r+8>>2]=0;return}function E(e){e=e|0;while(1){if(M(e)|0)break;if(I(e)|0)break;e=(t[61]|0)+2|0;t[61]=e;e=i[e>>1]|0;if(!(e<<16>>16)){e=0;break}}return e|0}function P(){var e=0;e=t[(t[49]|0)+20>>2]|0;switch(e|0){case 1:{e=-1;break}case 2:{e=-2;break}default:e=e-(t[3]|0)>>1;}return e|0}function q(e){e=e|0;if(!(S(e,140,5)|0)?!(S(e,150,3)|0):0)e=S(e,156,2)|0;else e=1;return e|0}function z(e){e=e|0;switch(e<<16>>16){case 160:case 32:case 12:case 11:case 9:{e=1;break}default:e=0;}return e|0}function D(e){e=e|0;if((t[3]|0)==(e|0))e=1;else e=$(i[e+-2>>1]|0)|0;return e|0}function F(){var e=0;e=t[(t[49]|0)+12>>2]|0;if(!e)e=-1;else e=e-(t[3]|0)>>1;return e|0}function G(){var e=0;e=t[(t[49]|0)+16>>2]|0;if(!e)e=-1;else e=e-(t[3]|0)>>1;return e|0}function H(){var e=0;e=t[(t[49]|0)+4>>2]|0;if(!e)e=-1;else e=e-(t[3]|0)>>1;return e|0}function J(){var e=0;e=t[49]|0;e=t[((e|0)==0?188:e+28|0)>>2]|0;t[49]=e;return (e|0)!=0|0}function K(){var e=0;e=t[50]|0;e=t[((e|0)==0?192:e+8|0)>>2]|0;t[50]=e;return (e|0)!=0|0}function L(){s[762]=1;t[56]=(t[61]|0)-(t[3]|0)>>1;t[61]=(t[62]|0)+2;return}function M(e){e=e|0;return (e|128)<<16>>16==160|(e+-9&65535)<5|0}function N(e){e=e|0;return e<<16>>16==39|e<<16>>16==34|0}function Q(){return (t[(t[49]|0)+8>>2]|0)-(t[3]|0)>>1|0}function R(){return (t[(t[50]|0)+4>>2]|0)-(t[3]|0)>>1|0}function T(e){e=e|0;return e<<16>>16==13|e<<16>>16==10|0}function V(){return (t[t[49]>>2]|0)-(t[3]|0)>>1|0}function W(){return (t[t[50]>>2]|0)-(t[3]|0)>>1|0}function X(){return c[(t[49]|0)+24>>0]|0|0}function Y(e){e=e|0;t[3]=e;return}function Z(){return (s[763]|0)!=0|0}function _(){return t[56]|0}function ee(e){e=e|0;n=e+992+15&-16;return 992}return {su:ee,ai:G,e:_,ee:R,es:W,f:Z,id:P,ie:H,ip:X,is:V,p:b,re:K,ri:J,sa:x,se:F,ses:Y,ss:Q}}("undefined"!=typeof self?self:global,{},a),r=e.su(s-(2<<17));}const h=c$1.length+1;e.ses(r),e.sa(h-1),i(c$1,new Uint16Array(a,r,h)),e.p()||(n=e.e(),o());const w=[],d=[];for(;e.ri();){const a=e.is(),r=e.ie(),s=e.ai(),i=e.id(),t=e.ss(),f=e.se();let n;e.ip()&&(n=b(-1===i?a:a+1,c$1.charCodeAt(-1===i?a-1:a))),w.push({n:n,s:a,e:r,ss:t,se:f,d:i,a:s});}for(;e.re();){const a=e.es(),r=c$1.charCodeAt(a);d.push(34===r||39===r?b(a+1,r):c$1.slice(e.es(),e.ee()));}return [w,d,!!e.f()]}function b(e,a){n=e;let r="",s=n;for(;;){n>=c$1.length&&o();const e=c$1.charCodeAt(n);if(e===a)break;92===e?(r+=c$1.slice(s,n),r+=k(),s=n):(8232===e||8233===e||u(e)&&o(),++n);}return r+=c$1.slice(s,n++),r}function k(){let e=c$1.charCodeAt(++n);switch(++n,e){case 110:return "\n";case 114:return "\r";case 120:return String.fromCharCode(l(2));case 117:return function(){let e;123===c$1.charCodeAt(n)?(++n,e=l(c$1.indexOf("}",n)-n),++n,e>1114111&&o()):e=l(4);return e<=65535?String.fromCharCode(e):(e-=65536,String.fromCharCode(55296+(e>>10),56320+(1023&e)))}();case 116:return "\t";case 98:return "\b";case 118:return "\v";case 102:return "\f";case 13:10===c$1.charCodeAt(n)&&++n;case 10:return "";case 56:case 57:o();default:if(e>=48&&e<=55){let a=c$1.substr(n-1,3).match(/^[0-7]+/)[0],r=parseInt(a,8);return r>255&&(a=a.slice(0,-1),r=parseInt(a,8)),n+=a.length-1,e=c$1.charCodeAt(n),"0"===a&&56!==e&&57!==e||o(),String.fromCharCode(r)}return u(e)?"":String.fromCharCode(e)}}function l(e){const a=n;let r=0,s=0;for(let a=0;a<e;++a,++n){let e,i=c$1.charCodeAt(n);if(95!==i){if(i>=97)e=i-97+10;else if(i>=65)e=i-65+10;else {if(!(i>=48&&i<=57))break;e=i-48;}if(e>=16)break;s=i,r=16*r+e;}else 95!==s&&0!==a||o(),s=i;}return 95!==s&&n-a===e||o(),r}function u(e){return 13===e||10===e}function o(){throw Object.assign(Error(`Parse error ${f}:${c$1.slice(0,n).split("\n").length}:${n-c$1.lastIndexOf("\n",n-1)}`),{idx:n})}
308
310
 
309
- async function _resolve (id, parentUrl) {
310
- const urlResolved = resolveIfNotPlainOrUrl(id, parentUrl);
311
- return {
312
- r: resolveImportMap(importMap, urlResolved || id, parentUrl) || throwUnresolved(id, parentUrl),
313
- // b = bare specifier
314
- b: !urlResolved && !isURL(id)
315
- };
316
- }
317
-
318
- const resolve = resolveHook ? async (id, parentUrl) => {
319
- let result = resolveHook(id, parentUrl, defaultResolve);
320
- // will be deprecated in next major
321
- if (result && result.then)
322
- result = await result;
323
- return result ? { r: result, b: !resolveIfNotPlainOrUrl(id, parentUrl) && !isURL(id) } : _resolve(id, parentUrl);
324
- } : _resolve;
325
-
326
- // importShim('mod');
327
- // importShim('mod', { opts });
328
- // importShim('mod', { opts }, parentUrl);
329
- // importShim('mod', parentUrl);
330
- async function importShim (id, ...args) {
331
- // parentUrl if present will be the last argument
332
- let parentUrl = args[args.length - 1];
333
- if (typeof parentUrl !== 'string')
334
- parentUrl = baseUrl;
335
- // needed for shim check
336
- await initPromise;
337
- if (importHook) await importHook(id, typeof args[1] !== 'string' ? args[1] : {}, parentUrl);
338
- if (acceptingImportMaps || shimMode || !baselinePassthrough) {
339
- processImportMaps();
340
- if (!shimMode)
341
- acceptingImportMaps = false;
342
- }
343
- await importMapPromise;
344
- return topLevelLoad((await resolve(id, parentUrl)).r, { credentials: 'same-origin' });
345
- }
346
-
347
- self.importShim = importShim;
348
-
349
- function defaultResolve (id, parentUrl) {
350
- return resolveImportMap(importMap, resolveIfNotPlainOrUrl(id, parentUrl) || id, parentUrl) || throwUnresolved(id, parentUrl);
351
- }
352
-
353
- function throwUnresolved (id, parentUrl) {
354
- throw Error(`Unable to resolve specifier '${id}'${fromParent(parentUrl)}`);
355
- }
356
-
357
- const resolveSync = (id, parentUrl = baseUrl) => {
358
- parentUrl = `${parentUrl}`;
359
- const result = resolveHook && resolveHook(id, parentUrl, defaultResolve);
360
- return result && !result.then ? result : defaultResolve(id, parentUrl);
361
- };
362
-
363
- function metaResolve (id, parentUrl = this.url) {
364
- return resolveSync(id, parentUrl);
365
- }
366
-
367
- importShim.resolve = resolveSync;
368
- importShim.getImportMap = () => JSON.parse(JSON.stringify(importMap));
369
-
370
- const registry = importShim._r = {};
371
-
372
- async function loadAll (load, seen) {
373
- if (load.b || seen[load.u])
374
- return;
375
- seen[load.u] = 1;
376
- await load.L;
377
- await Promise.all(load.d.map(dep => loadAll(dep, seen)));
378
- if (!load.n)
379
- load.n = load.d.some(dep => dep.n);
380
- }
381
-
382
- let importMap = { imports: {}, scopes: {} };
383
- let importMapSrcOrLazy = false;
384
- let baselinePassthrough;
385
-
386
- const initPromise = featureDetectionPromise.then(() => {
387
- // shim mode is determined on initialization, no late shim mode
388
- if (!shimMode) {
389
- if (document.querySelectorAll('script[type=module-shim],script[type=importmap-shim],link[rel=modulepreload-shim]').length) {
390
- setShimMode();
391
- }
392
- else {
393
- let seenScript = false;
394
- for (const script of document.querySelectorAll('script[type=module],script[type=importmap]')) {
395
- if (!seenScript) {
396
- if (script.type === 'module')
397
- seenScript = true;
398
- }
399
- else if (script.type === 'importmap') {
400
- importMapSrcOrLazy = true;
401
- break;
402
- }
403
- }
404
- }
405
- }
406
- baselinePassthrough = esmsInitOptions.polyfillEnable !== true && supportsDynamicImport && supportsImportMeta && supportsImportMaps && (!jsonModulesEnabled || supportsJsonAssertions) && (!cssModulesEnabled || supportsCssAssertions) && !importMapSrcOrLazy && !false;
407
- if (!supportsImportMaps) {
408
- const supports = HTMLScriptElement.supports || (type => type === 'classic' || type === 'module');
409
- HTMLScriptElement.supports = type => type === 'importmap' || supports(type);
410
- }
411
- if (shimMode || !baselinePassthrough) {
412
- new MutationObserver(mutations => {
413
- for (const mutation of mutations) {
414
- if (mutation.type !== 'childList') continue;
415
- for (const node of mutation.addedNodes) {
416
- if (node.tagName === 'SCRIPT') {
417
- if (node.type === (shimMode ? 'module-shim' : 'module'))
418
- processScript(node);
419
- if (node.type === (shimMode ? 'importmap-shim' : 'importmap'))
420
- processImportMap(node);
421
- }
422
- else if (node.tagName === 'LINK' && node.rel === (shimMode ? 'modulepreload-shim' : 'modulepreload'))
423
- processPreload(node);
424
- }
425
- }
426
- }).observe(document, { childList: true, subtree: true });
427
- processImportMaps();
428
- processScriptsAndPreloads();
429
- if (document.readyState === 'complete') {
430
- readyStateCompleteCheck();
431
- }
432
- else {
433
- async function readyListener () {
434
- await initPromise;
435
- processImportMaps();
436
- if (document.readyState === 'complete') {
437
- readyStateCompleteCheck();
438
- document.removeEventListener('readystatechange', readyListener);
439
- }
440
- }
441
- document.addEventListener('readystatechange', readyListener);
442
- }
443
- return undefined;
444
- }
445
- });
446
- let importMapPromise = initPromise;
447
- let firstPolyfillLoad = true;
448
- let acceptingImportMaps = true;
449
-
450
- async function topLevelLoad (url, fetchOpts, source, nativelyLoaded, lastStaticLoadPromise) {
451
- if (!shimMode)
452
- acceptingImportMaps = false;
453
- await importMapPromise;
454
- if (importHook) await importHook(id, typeof args[1] !== 'string' ? args[1] : {}, parentUrl);
455
- // early analysis opt-out - no need to even fetch if we have feature support
456
- if (!shimMode && baselinePassthrough) {
457
- // for polyfill case, only dynamic import needs a return value here, and dynamic import will never pass nativelyLoaded
458
- if (nativelyLoaded)
459
- return null;
460
- await lastStaticLoadPromise;
461
- return dynamicImport(source ? createBlob(source) : url, { errUrl: url || source });
462
- }
463
- const load = getOrCreateLoad(url, fetchOpts, null, source);
464
- const seen = {};
465
- await loadAll(load, seen);
466
- lastLoad = undefined;
467
- resolveDeps(load, seen);
468
- await lastStaticLoadPromise;
469
- if (source && !shimMode && !load.n && !false) {
470
- const module = await dynamicImport(createBlob(source), { errUrl: source });
471
- if (revokeBlobURLs) revokeObjectURLs(Object.keys(seen));
472
- return module;
473
- }
474
- if (firstPolyfillLoad && !shimMode && load.n && nativelyLoaded) {
475
- onpolyfill();
476
- firstPolyfillLoad = false;
477
- }
478
- const module = await dynamicImport(!shimMode && !load.n && nativelyLoaded ? load.u : load.b, { errUrl: load.u });
479
- // if the top-level load is a shell, run its update function
480
- if (load.s)
481
- (await dynamicImport(load.s)).u$_(module);
482
- if (revokeBlobURLs) revokeObjectURLs(Object.keys(seen));
483
- // when tla is supported, this should return the tla promise as an actual handle
484
- // so readystate can still correspond to the sync subgraph exec completions
485
- return module;
486
- }
487
-
488
- function revokeObjectURLs(registryKeys) {
489
- let batch = 0;
490
- const keysLength = registryKeys.length;
491
- const schedule = self.requestIdleCallback ? self.requestIdleCallback : self.requestAnimationFrame;
492
- schedule(cleanup);
493
- function cleanup() {
494
- const batchStartIndex = batch * 100;
495
- if (batchStartIndex > keysLength) return
496
- for (const key of registryKeys.slice(batchStartIndex, batchStartIndex + 100)) {
497
- const load = registry[key];
498
- if (load) URL.revokeObjectURL(load.b);
499
- }
500
- batch++;
501
- schedule(cleanup);
502
- }
503
- }
504
-
505
- function urlJsString (url) {
506
- return `'${url.replace(/'/g, "\\'")}'`;
507
- }
508
-
509
- let lastLoad;
510
- function resolveDeps (load, seen) {
511
- if (load.b || !seen[load.u])
512
- return;
513
- seen[load.u] = 0;
514
-
515
- for (const dep of load.d)
516
- resolveDeps(dep, seen);
517
-
518
- const [imports] = load.a;
519
-
520
- // "execution"
521
- const source = load.S;
522
-
523
- // edge doesnt execute sibling in order, so we fix this up by ensuring all previous executions are explicit dependencies
524
- let resolvedSource = edge && lastLoad ? `import '${lastLoad}';` : '';
525
-
526
- if (!imports.length) {
527
- resolvedSource += source;
528
- }
529
- else {
530
- // once all deps have loaded we can inline the dependency resolution blobs
531
- // and define this blob
532
- let lastIndex = 0, depIndex = 0, dynamicImportEndStack = [];
533
- function pushStringTo (originalIndex) {
534
- while (dynamicImportEndStack[dynamicImportEndStack.length - 1] < originalIndex) {
535
- const dynamicImportEnd = dynamicImportEndStack.pop();
536
- resolvedSource += `${source.slice(lastIndex, dynamicImportEnd)}, ${urlJsString(load.r)}`;
537
- lastIndex = dynamicImportEnd;
538
- }
539
- resolvedSource += source.slice(lastIndex, originalIndex);
540
- lastIndex = originalIndex;
541
- }
542
- for (const { s: start, ss: statementStart, se: statementEnd, d: dynamicImportIndex } of imports) {
543
- // dependency source replacements
544
- if (dynamicImportIndex === -1) {
545
- let depLoad = load.d[depIndex++], blobUrl = depLoad.b, cycleShell = !blobUrl;
546
- if (cycleShell) {
547
- // circular shell creation
548
- if (!(blobUrl = depLoad.s)) {
549
- blobUrl = depLoad.s = createBlob(`export function u$_(m){${
550
- depLoad.a[1].map(
551
- name => name === 'default' ? `d$_=m.default` : `${name}=m.${name}`
552
- ).join(',')
553
- }}${
554
- depLoad.a[1].map(name =>
555
- name === 'default' ? `let d$_;export{d$_ as default}` : `export let ${name}`
556
- ).join(';')
557
- }\n//# sourceURL=${depLoad.r}?cycle`);
558
- }
559
- }
560
-
561
- pushStringTo(start - 1);
562
- resolvedSource += `/*${source.slice(start - 1, statementEnd)}*/${urlJsString(blobUrl)}`;
563
-
564
- // circular shell execution
565
- if (!cycleShell && depLoad.s) {
566
- resolvedSource += `;import*as m$_${depIndex} from'${depLoad.b}';import{u$_ as u$_${depIndex}}from'${depLoad.s}';u$_${depIndex}(m$_${depIndex})`;
567
- depLoad.s = undefined;
568
- }
569
- lastIndex = statementEnd;
570
- }
571
- // import.meta
572
- else if (dynamicImportIndex === -2) {
573
- load.m = { url: load.r, resolve: metaResolve };
574
- metaHook(load.m, load.u);
575
- pushStringTo(start);
576
- resolvedSource += `importShim._r[${urlJsString(load.u)}].m`;
577
- lastIndex = statementEnd;
578
- }
579
- // dynamic import
580
- else {
581
- pushStringTo(statementStart + 6);
582
- resolvedSource += `Shim(`;
583
- dynamicImportEndStack.push(statementEnd - 1);
584
- lastIndex = start;
585
- }
586
- }
587
-
588
- pushStringTo(source.length);
589
- }
590
-
591
- let hasSourceURL = false;
592
- resolvedSource = resolvedSource.replace(sourceMapURLRegEx, (match, isMapping, url) => (hasSourceURL = !isMapping, match.replace(url, () => new URL(url, load.r))));
593
- if (!hasSourceURL)
594
- resolvedSource += '\n//# sourceURL=' + load.r;
595
-
596
- load.b = lastLoad = createBlob(resolvedSource);
597
- load.S = undefined;
598
- }
599
-
600
- // ; and // trailer support added for Ruby on Rails 7 source maps compatibility
601
- // https://github.com/guybedford/es-module-shims/issues/228
602
- const sourceMapURLRegEx = /\n\/\/# source(Mapping)?URL=([^\n]+)\s*((;|\/\/[^#][^\n]*)\s*)*$/;
603
-
604
- const jsContentType = /^(text|application)\/(x-)?javascript(;|$)/;
605
- const jsonContentType = /^(text|application)\/json(;|$)/;
606
- const cssContentType = /^(text|application)\/css(;|$)/;
607
-
608
- const cssUrlRegEx = /url\(\s*(?:(["'])((?:\\.|[^\n\\"'])+)\1|((?:\\.|[^\s,"'()\\])+))\s*\)/g;
609
-
610
- // restrict in-flight fetches to a pool of 100
611
- let p = [];
612
- let c = 0;
613
- function pushFetchPool () {
614
- if (++c > 100)
615
- return new Promise(r => p.push(r));
616
- }
617
- function popFetchPool () {
618
- c--;
619
- if (p.length)
620
- p.shift()();
621
- }
622
-
623
- async function doFetch (url, fetchOpts, parent) {
624
- if (enforceIntegrity && !fetchOpts.integrity)
625
- throw Error(`No integrity for ${url}${fromParent(parent)}.`);
626
- const poolQueue = pushFetchPool();
627
- if (poolQueue) await poolQueue;
628
- try {
629
- var res = await fetchHook(url, fetchOpts);
630
- }
631
- catch (e) {
632
- e.message = `Unable to fetch ${url}${fromParent(parent)} - see network log for details.\n` + e.message;
633
- throw e;
634
- }
635
- finally {
636
- popFetchPool();
637
- }
638
- if (!res.ok)
639
- throw Error(`${res.status} ${res.statusText} ${res.url}${fromParent(parent)}`);
640
- return res;
641
- }
642
-
643
- async function fetchModule (url, fetchOpts, parent) {
644
- const res = await doFetch(url, fetchOpts, parent);
645
- const contentType = res.headers.get('content-type');
646
- if (jsContentType.test(contentType))
647
- return { r: res.url, s: await res.text(), t: 'js' };
648
- else if (jsonContentType.test(contentType))
649
- return { r: res.url, s: `export default ${await res.text()}`, t: 'json' };
650
- else if (cssContentType.test(contentType)) {
651
- return { r: res.url, s: `var s=new CSSStyleSheet();s.replaceSync(${
652
- JSON.stringify((await res.text()).replace(cssUrlRegEx, (_match, quotes = '', relUrl1, relUrl2) => `url(${quotes}${resolveUrl(relUrl1 || relUrl2, url)}${quotes})`))
653
- });export default s;`, t: 'css' };
654
- }
655
- else
656
- throw Error(`Unsupported Content-Type "${contentType}" loading ${url}${fromParent(parent)}. Modules must be served with a valid MIME type like application/javascript.`);
657
- }
658
-
659
- function getOrCreateLoad (url, fetchOpts, parent, source) {
660
- let load = registry[url];
661
- if (load && !source)
662
- return load;
663
-
664
- load = {
665
- // url
666
- u: url,
667
- // response url
668
- r: source ? url : undefined,
669
- // fetchPromise
670
- f: undefined,
671
- // source
672
- S: undefined,
673
- // linkPromise
674
- L: undefined,
675
- // analysis
676
- a: undefined,
677
- // deps
678
- d: undefined,
679
- // blobUrl
680
- b: undefined,
681
- // shellUrl
682
- s: undefined,
683
- // needsShim
684
- n: false,
685
- // type
686
- t: null,
687
- // meta
688
- m: null
689
- };
690
- if (registry[url]) {
691
- let i = 0;
692
- while (registry[load.u + ++i]);
693
- load.u += i;
694
- }
695
- registry[load.u] = load;
696
-
697
- load.f = (async () => {
698
- if (!source) {
699
- // preload fetch options override fetch options (race)
700
- let t;
701
- ({ r: load.r, s: source, t } = await (fetchCache[url] || fetchModule(url, fetchOpts, parent)));
702
- if (t && !shimMode) {
703
- if (t === 'css' && !cssModulesEnabled || t === 'json' && !jsonModulesEnabled)
704
- throw Error(`${t}-modules require <script type="esms-options">{ "polyfillEnable": ["${t}-modules"] }<${''}/script>`);
705
- if (t === 'css' && !supportsCssAssertions || t === 'json' && !supportsJsonAssertions)
706
- load.n = true;
707
- }
708
- }
709
- try {
710
- load.a = parse(source, load.u);
711
- }
712
- catch (e) {
713
- throwError(e);
714
- load.a = [[], [], false];
715
- }
716
- load.S = source;
717
- return load;
718
- })();
719
-
720
- load.L = load.f.then(async () => {
721
- let childFetchOpts = fetchOpts;
722
- load.d = (await Promise.all(load.a[0].map(async ({ n, d }) => {
723
- if (d >= 0 && !supportsDynamicImport || d === 2 && !supportsImportMeta)
724
- load.n = true;
725
- if (d !== -1 || !n) return;
726
- const { r, b } = await resolve(n, load.r || load.u);
727
- if (b && (!supportsImportMaps || importMapSrcOrLazy))
728
- load.n = true;
729
- if (skip && skip.test(r)) return { b: r };
730
- if (childFetchOpts.integrity)
731
- childFetchOpts = Object.assign({}, childFetchOpts, { integrity: undefined });
732
- return getOrCreateLoad(r, childFetchOpts, load.r).f;
733
- }))).filter(l => l);
734
- });
735
-
736
- return load;
737
- }
738
-
739
- function processScriptsAndPreloads () {
740
- for (const script of document.querySelectorAll(shimMode ? 'script[type=module-shim]' : 'script[type=module]'))
741
- processScript(script);
742
- for (const link of document.querySelectorAll(shimMode ? 'link[rel=modulepreload-shim]' : 'link[rel=modulepreload]'))
743
- processPreload(link);
744
- }
745
-
746
- function processImportMaps () {
747
- for (const script of document.querySelectorAll(shimMode ? 'script[type="importmap-shim"]' : 'script[type="importmap"]'))
748
- processImportMap(script);
749
- }
750
-
751
- function getFetchOpts (script) {
752
- const fetchOpts = {};
753
- if (script.integrity)
754
- fetchOpts.integrity = script.integrity;
755
- if (script.referrerpolicy)
756
- fetchOpts.referrerPolicy = script.referrerpolicy;
757
- if (script.crossorigin === 'use-credentials')
758
- fetchOpts.credentials = 'include';
759
- else if (script.crossorigin === 'anonymous')
760
- fetchOpts.credentials = 'omit';
761
- else
762
- fetchOpts.credentials = 'same-origin';
763
- return fetchOpts;
764
- }
765
-
766
- let lastStaticLoadPromise = Promise.resolve();
767
-
768
- let domContentLoadedCnt = 1;
769
- function domContentLoadedCheck () {
770
- if (--domContentLoadedCnt === 0 && !noLoadEventRetriggers)
771
- document.dispatchEvent(new Event('DOMContentLoaded'));
772
- }
773
- // this should always trigger because we assume es-module-shims is itself a domcontentloaded requirement
774
- document.addEventListener('DOMContentLoaded', async () => {
775
- await initPromise;
776
- domContentLoadedCheck();
777
- if (shimMode || !baselinePassthrough) {
778
- processImportMaps();
779
- processScriptsAndPreloads();
780
- }
781
- });
782
-
783
- let readyStateCompleteCnt = 1;
784
- function readyStateCompleteCheck () {
785
- if (--readyStateCompleteCnt === 0 && !noLoadEventRetriggers)
786
- document.dispatchEvent(new Event('readystatechange'));
787
- }
788
-
789
- function processImportMap (script) {
790
- if (script.ep) // ep marker = script processed
791
- return;
792
- // empty inline scripts sometimes show before domready
793
- if (!script.src && !script.innerHTML)
794
- return;
795
- script.ep = true;
796
- // we dont currently support multiple, external or dynamic imports maps in polyfill mode to match native
797
- if (script.src) {
798
- if (!shimMode)
799
- return;
800
- importMapSrcOrLazy = true;
801
- }
802
- if (acceptingImportMaps) {
803
- importMapPromise = importMapPromise
804
- .then(async () => {
805
- importMap = resolveAndComposeImportMap(script.src ? await (await doFetch(script.src, getFetchOpts(script))).json() : JSON.parse(script.innerHTML), script.src || baseUrl, importMap);
806
- })
807
- .catch(throwError);
808
- if (!shimMode)
809
- acceptingImportMaps = false;
810
- }
811
- }
812
-
813
- function processScript (script) {
814
- if (script.ep) // ep marker = script processed
815
- return;
816
- if (script.getAttribute('noshim') !== null)
817
- return;
818
- // empty inline scripts sometimes show before domready
819
- if (!script.src && !script.innerHTML)
820
- return;
821
- script.ep = true;
822
- // does this load block readystate complete
823
- const isBlockingReadyScript = script.getAttribute('async') === null && readyStateCompleteCnt > 0;
824
- // does this load block DOMContentLoaded
825
- const isDomContentLoadedScript = domContentLoadedCnt > 0;
826
- if (isBlockingReadyScript) readyStateCompleteCnt++;
827
- if (isDomContentLoadedScript) domContentLoadedCnt++;
828
- const loadPromise = topLevelLoad(script.src || baseUrl, getFetchOpts(script), !script.src && script.innerHTML, !shimMode, isBlockingReadyScript && lastStaticLoadPromise).catch(throwError);
829
- if (isBlockingReadyScript)
830
- lastStaticLoadPromise = loadPromise.then(readyStateCompleteCheck);
831
- if (isDomContentLoadedScript)
832
- loadPromise.then(domContentLoadedCheck);
833
- }
834
-
835
- const fetchCache = {};
836
- function processPreload (link) {
837
- if (link.ep) // ep marker = processed
838
- return;
839
- link.ep = true;
840
- if (fetchCache[link.href])
841
- return;
842
- fetchCache[link.href] = fetchModule(link.href, getFetchOpts(link));
311
+ async function _resolve (id, parentUrl) {
312
+ const urlResolved = resolveIfNotPlainOrUrl(id, parentUrl);
313
+ return {
314
+ r: resolveImportMap(importMap, urlResolved || id, parentUrl) || throwUnresolved(id, parentUrl),
315
+ // b = bare specifier
316
+ b: !urlResolved && !isURL(id)
317
+ };
318
+ }
319
+
320
+ const resolve = resolveHook ? async (id, parentUrl) => {
321
+ let result = resolveHook(id, parentUrl, defaultResolve);
322
+ // will be deprecated in next major
323
+ if (result && result.then)
324
+ result = await result;
325
+ return result ? { r: result, b: !resolveIfNotPlainOrUrl(id, parentUrl) && !isURL(id) } : _resolve(id, parentUrl);
326
+ } : _resolve;
327
+
328
+ // importShim('mod');
329
+ // importShim('mod', { opts });
330
+ // importShim('mod', { opts }, parentUrl);
331
+ // importShim('mod', parentUrl);
332
+ async function importShim (id, ...args) {
333
+ // parentUrl if present will be the last argument
334
+ let parentUrl = args[args.length - 1];
335
+ if (typeof parentUrl !== 'string')
336
+ parentUrl = baseUrl;
337
+ // needed for shim check
338
+ await initPromise;
339
+ if (importHook) await importHook(id, typeof args[1] !== 'string' ? args[1] : {}, parentUrl);
340
+ if (acceptingImportMaps || shimMode || !baselinePassthrough) {
341
+ processImportMaps();
342
+ if (!shimMode)
343
+ acceptingImportMaps = false;
344
+ }
345
+ await importMapPromise;
346
+ return topLevelLoad((await resolve(id, parentUrl)).r, { credentials: 'same-origin' });
347
+ }
348
+
349
+ self.importShim = importShim;
350
+
351
+ function defaultResolve (id, parentUrl) {
352
+ return resolveImportMap(importMap, resolveIfNotPlainOrUrl(id, parentUrl) || id, parentUrl) || throwUnresolved(id, parentUrl);
353
+ }
354
+
355
+ function throwUnresolved (id, parentUrl) {
356
+ throw Error(`Unable to resolve specifier '${id}'${fromParent(parentUrl)}`);
357
+ }
358
+
359
+ const resolveSync = (id, parentUrl = baseUrl) => {
360
+ parentUrl = `${parentUrl}`;
361
+ const result = resolveHook && resolveHook(id, parentUrl, defaultResolve);
362
+ return result && !result.then ? result : defaultResolve(id, parentUrl);
363
+ };
364
+
365
+ function metaResolve (id, parentUrl = this.url) {
366
+ return resolveSync(id, parentUrl);
367
+ }
368
+
369
+ importShim.resolve = resolveSync;
370
+ importShim.getImportMap = () => JSON.parse(JSON.stringify(importMap));
371
+
372
+ const registry = importShim._r = {};
373
+
374
+ async function loadAll (load, seen) {
375
+ if (load.b || seen[load.u])
376
+ return;
377
+ seen[load.u] = 1;
378
+ await load.L;
379
+ await Promise.all(load.d.map(dep => loadAll(dep, seen)));
380
+ if (!load.n)
381
+ load.n = load.d.some(dep => dep.n);
382
+ }
383
+
384
+ let importMap = { imports: {}, scopes: {} };
385
+ let importMapSrcOrLazy = false;
386
+ let baselinePassthrough;
387
+
388
+ const initPromise = featureDetectionPromise.then(() => {
389
+ // shim mode is determined on initialization, no late shim mode
390
+ if (!shimMode) {
391
+ if (document.querySelectorAll('script[type=module-shim],script[type=importmap-shim],link[rel=modulepreload-shim]').length) {
392
+ setShimMode();
393
+ }
394
+ else {
395
+ let seenScript = false;
396
+ for (const script of document.querySelectorAll('script[type=module],script[type=importmap]')) {
397
+ if (!seenScript) {
398
+ if (script.type === 'module')
399
+ seenScript = true;
400
+ }
401
+ else if (script.type === 'importmap') {
402
+ importMapSrcOrLazy = true;
403
+ break;
404
+ }
405
+ }
406
+ }
407
+ }
408
+ baselinePassthrough = esmsInitOptions.polyfillEnable !== true && supportsDynamicImport && supportsImportMeta && supportsImportMaps && (!jsonModulesEnabled || supportsJsonAssertions) && (!cssModulesEnabled || supportsCssAssertions) && !importMapSrcOrLazy && !false;
409
+ if (!supportsImportMaps) {
410
+ const supports = HTMLScriptElement.supports || (type => type === 'classic' || type === 'module');
411
+ HTMLScriptElement.supports = type => type === 'importmap' || supports(type);
412
+ }
413
+ if (shimMode || !baselinePassthrough) {
414
+ new MutationObserver(mutations => {
415
+ for (const mutation of mutations) {
416
+ if (mutation.type !== 'childList') continue;
417
+ for (const node of mutation.addedNodes) {
418
+ if (node.tagName === 'SCRIPT') {
419
+ if (node.type === (shimMode ? 'module-shim' : 'module'))
420
+ processScript(node);
421
+ if (node.type === (shimMode ? 'importmap-shim' : 'importmap'))
422
+ processImportMap(node);
423
+ }
424
+ else if (node.tagName === 'LINK' && node.rel === (shimMode ? 'modulepreload-shim' : 'modulepreload'))
425
+ processPreload(node);
426
+ }
427
+ }
428
+ }).observe(document, { childList: true, subtree: true });
429
+ processImportMaps();
430
+ processScriptsAndPreloads();
431
+ if (document.readyState === 'complete') {
432
+ readyStateCompleteCheck();
433
+ }
434
+ else {
435
+ async function readyListener () {
436
+ await initPromise;
437
+ processImportMaps();
438
+ if (document.readyState === 'complete') {
439
+ readyStateCompleteCheck();
440
+ document.removeEventListener('readystatechange', readyListener);
441
+ }
442
+ }
443
+ document.addEventListener('readystatechange', readyListener);
444
+ }
445
+ return undefined;
446
+ }
447
+ });
448
+ let importMapPromise = initPromise;
449
+ let firstPolyfillLoad = true;
450
+ let acceptingImportMaps = true;
451
+
452
+ async function topLevelLoad (url, fetchOpts, source, nativelyLoaded, lastStaticLoadPromise) {
453
+ if (!shimMode)
454
+ acceptingImportMaps = false;
455
+ await importMapPromise;
456
+ if (importHook) await importHook(id, typeof args[1] !== 'string' ? args[1] : {}, parentUrl);
457
+ // early analysis opt-out - no need to even fetch if we have feature support
458
+ if (!shimMode && baselinePassthrough) {
459
+ // for polyfill case, only dynamic import needs a return value here, and dynamic import will never pass nativelyLoaded
460
+ if (nativelyLoaded)
461
+ return null;
462
+ await lastStaticLoadPromise;
463
+ return dynamicImport(source ? createBlob(source) : url, { errUrl: url || source });
464
+ }
465
+ const load = getOrCreateLoad(url, fetchOpts, null, source);
466
+ const seen = {};
467
+ await loadAll(load, seen);
468
+ lastLoad = undefined;
469
+ resolveDeps(load, seen);
470
+ await lastStaticLoadPromise;
471
+ if (source && !shimMode && !load.n && !false) {
472
+ const module = await dynamicImport(createBlob(source), { errUrl: source });
473
+ if (revokeBlobURLs) revokeObjectURLs(Object.keys(seen));
474
+ return module;
475
+ }
476
+ if (firstPolyfillLoad && !shimMode && load.n && nativelyLoaded) {
477
+ onpolyfill();
478
+ firstPolyfillLoad = false;
479
+ }
480
+ const module = await dynamicImport(!shimMode && !load.n && nativelyLoaded ? load.u : load.b, { errUrl: load.u });
481
+ // if the top-level load is a shell, run its update function
482
+ if (load.s)
483
+ (await dynamicImport(load.s)).u$_(module);
484
+ if (revokeBlobURLs) revokeObjectURLs(Object.keys(seen));
485
+ // when tla is supported, this should return the tla promise as an actual handle
486
+ // so readystate can still correspond to the sync subgraph exec completions
487
+ return module;
488
+ }
489
+
490
+ function revokeObjectURLs(registryKeys) {
491
+ let batch = 0;
492
+ const keysLength = registryKeys.length;
493
+ const schedule = self.requestIdleCallback ? self.requestIdleCallback : self.requestAnimationFrame;
494
+ schedule(cleanup);
495
+ function cleanup() {
496
+ const batchStartIndex = batch * 100;
497
+ if (batchStartIndex > keysLength) return
498
+ for (const key of registryKeys.slice(batchStartIndex, batchStartIndex + 100)) {
499
+ const load = registry[key];
500
+ if (load) URL.revokeObjectURL(load.b);
501
+ }
502
+ batch++;
503
+ schedule(cleanup);
504
+ }
505
+ }
506
+
507
+ function urlJsString (url) {
508
+ return `'${url.replace(/'/g, "\\'")}'`;
509
+ }
510
+
511
+ let lastLoad;
512
+ function resolveDeps (load, seen) {
513
+ if (load.b || !seen[load.u])
514
+ return;
515
+ seen[load.u] = 0;
516
+
517
+ for (const dep of load.d)
518
+ resolveDeps(dep, seen);
519
+
520
+ const [imports] = load.a;
521
+
522
+ // "execution"
523
+ const source = load.S;
524
+
525
+ // edge doesnt execute sibling in order, so we fix this up by ensuring all previous executions are explicit dependencies
526
+ let resolvedSource = edge && lastLoad ? `import '${lastLoad}';` : '';
527
+
528
+ if (!imports.length) {
529
+ resolvedSource += source;
530
+ }
531
+ else {
532
+ // once all deps have loaded we can inline the dependency resolution blobs
533
+ // and define this blob
534
+ let lastIndex = 0, depIndex = 0, dynamicImportEndStack = [];
535
+ function pushStringTo (originalIndex) {
536
+ while (dynamicImportEndStack[dynamicImportEndStack.length - 1] < originalIndex) {
537
+ const dynamicImportEnd = dynamicImportEndStack.pop();
538
+ resolvedSource += `${source.slice(lastIndex, dynamicImportEnd)}, ${urlJsString(load.r)}`;
539
+ lastIndex = dynamicImportEnd;
540
+ }
541
+ resolvedSource += source.slice(lastIndex, originalIndex);
542
+ lastIndex = originalIndex;
543
+ }
544
+ for (const { s: start, ss: statementStart, se: statementEnd, d: dynamicImportIndex } of imports) {
545
+ // dependency source replacements
546
+ if (dynamicImportIndex === -1) {
547
+ let depLoad = load.d[depIndex++], blobUrl = depLoad.b, cycleShell = !blobUrl;
548
+ if (cycleShell) {
549
+ // circular shell creation
550
+ if (!(blobUrl = depLoad.s)) {
551
+ blobUrl = depLoad.s = createBlob(`export function u$_(m){${
552
+ depLoad.a[1].map(
553
+ name => name === 'default' ? `d$_=m.default` : `${name}=m.${name}`
554
+ ).join(',')
555
+ }}${
556
+ depLoad.a[1].map(name =>
557
+ name === 'default' ? `let d$_;export{d$_ as default}` : `export let ${name}`
558
+ ).join(';')
559
+ }\n//# sourceURL=${depLoad.r}?cycle`);
560
+ }
561
+ }
562
+
563
+ pushStringTo(start - 1);
564
+ resolvedSource += `/*${source.slice(start - 1, statementEnd)}*/${urlJsString(blobUrl)}`;
565
+
566
+ // circular shell execution
567
+ if (!cycleShell && depLoad.s) {
568
+ resolvedSource += `;import*as m$_${depIndex} from'${depLoad.b}';import{u$_ as u$_${depIndex}}from'${depLoad.s}';u$_${depIndex}(m$_${depIndex})`;
569
+ depLoad.s = undefined;
570
+ }
571
+ lastIndex = statementEnd;
572
+ }
573
+ // import.meta
574
+ else if (dynamicImportIndex === -2) {
575
+ load.m = { url: load.r, resolve: metaResolve };
576
+ metaHook(load.m, load.u);
577
+ pushStringTo(start);
578
+ resolvedSource += `importShim._r[${urlJsString(load.u)}].m`;
579
+ lastIndex = statementEnd;
580
+ }
581
+ // dynamic import
582
+ else {
583
+ pushStringTo(statementStart + 6);
584
+ resolvedSource += `Shim(`;
585
+ dynamicImportEndStack.push(statementEnd - 1);
586
+ lastIndex = start;
587
+ }
588
+ }
589
+
590
+ pushStringTo(source.length);
591
+ }
592
+
593
+ let hasSourceURL = false;
594
+ resolvedSource = resolvedSource.replace(sourceMapURLRegEx, (match, isMapping, url) => (hasSourceURL = !isMapping, match.replace(url, () => new URL(url, load.r))));
595
+ if (!hasSourceURL)
596
+ resolvedSource += '\n//# sourceURL=' + load.r;
597
+
598
+ load.b = lastLoad = createBlob(resolvedSource);
599
+ load.S = undefined;
600
+ }
601
+
602
+ // ; and // trailer support added for Ruby on Rails 7 source maps compatibility
603
+ // https://github.com/guybedford/es-module-shims/issues/228
604
+ const sourceMapURLRegEx = /\n\/\/# source(Mapping)?URL=([^\n]+)\s*((;|\/\/[^#][^\n]*)\s*)*$/;
605
+
606
+ const jsContentType = /^(text|application)\/(x-)?javascript(;|$)/;
607
+ const jsonContentType = /^(text|application)\/json(;|$)/;
608
+ const cssContentType = /^(text|application)\/css(;|$)/;
609
+
610
+ const cssUrlRegEx = /url\(\s*(?:(["'])((?:\\.|[^\n\\"'])+)\1|((?:\\.|[^\s,"'()\\])+))\s*\)/g;
611
+
612
+ // restrict in-flight fetches to a pool of 100
613
+ let p = [];
614
+ let c = 0;
615
+ function pushFetchPool () {
616
+ if (++c > 100)
617
+ return new Promise(r => p.push(r));
618
+ }
619
+ function popFetchPool () {
620
+ c--;
621
+ if (p.length)
622
+ p.shift()();
623
+ }
624
+
625
+ async function doFetch (url, fetchOpts, parent) {
626
+ if (enforceIntegrity && !fetchOpts.integrity)
627
+ throw Error(`No integrity for ${url}${fromParent(parent)}.`);
628
+ const poolQueue = pushFetchPool();
629
+ if (poolQueue) await poolQueue;
630
+ try {
631
+ var res = await fetchHook(url, fetchOpts);
632
+ }
633
+ catch (e) {
634
+ e.message = `Unable to fetch ${url}${fromParent(parent)} - see network log for details.\n` + e.message;
635
+ throw e;
636
+ }
637
+ finally {
638
+ popFetchPool();
639
+ }
640
+ if (!res.ok)
641
+ throw Error(`${res.status} ${res.statusText} ${res.url}${fromParent(parent)}`);
642
+ return res;
643
+ }
644
+
645
+ async function fetchModule (url, fetchOpts, parent) {
646
+ const res = await doFetch(url, fetchOpts, parent);
647
+ const contentType = res.headers.get('content-type');
648
+ if (jsContentType.test(contentType))
649
+ return { r: res.url, s: await res.text(), t: 'js' };
650
+ else if (jsonContentType.test(contentType))
651
+ return { r: res.url, s: `export default ${await res.text()}`, t: 'json' };
652
+ else if (cssContentType.test(contentType)) {
653
+ return { r: res.url, s: `var s=new CSSStyleSheet();s.replaceSync(${
654
+ JSON.stringify((await res.text()).replace(cssUrlRegEx, (_match, quotes = '', relUrl1, relUrl2) => `url(${quotes}${resolveUrl(relUrl1 || relUrl2, url)}${quotes})`))
655
+ });export default s;`, t: 'css' };
656
+ }
657
+ else
658
+ throw Error(`Unsupported Content-Type "${contentType}" loading ${url}${fromParent(parent)}. Modules must be served with a valid MIME type like application/javascript.`);
659
+ }
660
+
661
+ function getOrCreateLoad (url, fetchOpts, parent, source) {
662
+ let load = registry[url];
663
+ if (load && !source)
664
+ return load;
665
+
666
+ load = {
667
+ // url
668
+ u: url,
669
+ // response url
670
+ r: source ? url : undefined,
671
+ // fetchPromise
672
+ f: undefined,
673
+ // source
674
+ S: undefined,
675
+ // linkPromise
676
+ L: undefined,
677
+ // analysis
678
+ a: undefined,
679
+ // deps
680
+ d: undefined,
681
+ // blobUrl
682
+ b: undefined,
683
+ // shellUrl
684
+ s: undefined,
685
+ // needsShim
686
+ n: false,
687
+ // type
688
+ t: null,
689
+ // meta
690
+ m: null
691
+ };
692
+ if (registry[url]) {
693
+ let i = 0;
694
+ while (registry[load.u + ++i]);
695
+ load.u += i;
696
+ }
697
+ registry[load.u] = load;
698
+
699
+ load.f = (async () => {
700
+ if (!source) {
701
+ // preload fetch options override fetch options (race)
702
+ let t;
703
+ ({ r: load.r, s: source, t } = await (fetchCache[url] || fetchModule(url, fetchOpts, parent)));
704
+ if (t && !shimMode) {
705
+ if (t === 'css' && !cssModulesEnabled || t === 'json' && !jsonModulesEnabled)
706
+ throw Error(`${t}-modules require <script type="esms-options">{ "polyfillEnable": ["${t}-modules"] }<${''}/script>`);
707
+ if (t === 'css' && !supportsCssAssertions || t === 'json' && !supportsJsonAssertions)
708
+ load.n = true;
709
+ }
710
+ }
711
+ try {
712
+ load.a = parse(source, load.u);
713
+ }
714
+ catch (e) {
715
+ throwError(e);
716
+ load.a = [[], [], false];
717
+ }
718
+ load.S = source;
719
+ return load;
720
+ })();
721
+
722
+ load.L = load.f.then(async () => {
723
+ let childFetchOpts = fetchOpts;
724
+ load.d = (await Promise.all(load.a[0].map(async ({ n, d }) => {
725
+ if (d >= 0 && !supportsDynamicImport || d === -2 && !supportsImportMeta)
726
+ load.n = true;
727
+ if (d !== -1 || !n) return;
728
+ const { r, b } = await resolve(n, load.r || load.u);
729
+ if (b && (!supportsImportMaps || importMapSrcOrLazy))
730
+ load.n = true;
731
+ if (skip && skip.test(r)) return { b: r };
732
+ if (childFetchOpts.integrity)
733
+ childFetchOpts = Object.assign({}, childFetchOpts, { integrity: undefined });
734
+ return getOrCreateLoad(r, childFetchOpts, load.r).f;
735
+ }))).filter(l => l);
736
+ });
737
+
738
+ return load;
739
+ }
740
+
741
+ function processScriptsAndPreloads () {
742
+ for (const script of document.querySelectorAll(shimMode ? 'script[type=module-shim]' : 'script[type=module]'))
743
+ processScript(script);
744
+ for (const link of document.querySelectorAll(shimMode ? 'link[rel=modulepreload-shim]' : 'link[rel=modulepreload]'))
745
+ processPreload(link);
746
+ }
747
+
748
+ function processImportMaps () {
749
+ for (const script of document.querySelectorAll(shimMode ? 'script[type="importmap-shim"]' : 'script[type="importmap"]'))
750
+ processImportMap(script);
751
+ }
752
+
753
+ function getFetchOpts (script) {
754
+ const fetchOpts = {};
755
+ if (script.integrity)
756
+ fetchOpts.integrity = script.integrity;
757
+ if (script.referrerpolicy)
758
+ fetchOpts.referrerPolicy = script.referrerpolicy;
759
+ if (script.crossorigin === 'use-credentials')
760
+ fetchOpts.credentials = 'include';
761
+ else if (script.crossorigin === 'anonymous')
762
+ fetchOpts.credentials = 'omit';
763
+ else
764
+ fetchOpts.credentials = 'same-origin';
765
+ return fetchOpts;
766
+ }
767
+
768
+ let lastStaticLoadPromise = Promise.resolve();
769
+
770
+ let domContentLoadedCnt = 1;
771
+ function domContentLoadedCheck () {
772
+ if (--domContentLoadedCnt === 0 && !noLoadEventRetriggers)
773
+ document.dispatchEvent(new Event('DOMContentLoaded'));
774
+ }
775
+ // this should always trigger because we assume es-module-shims is itself a domcontentloaded requirement
776
+ document.addEventListener('DOMContentLoaded', async () => {
777
+ await initPromise;
778
+ domContentLoadedCheck();
779
+ if (shimMode || !baselinePassthrough) {
780
+ processImportMaps();
781
+ processScriptsAndPreloads();
782
+ }
783
+ });
784
+
785
+ let readyStateCompleteCnt = 1;
786
+ function readyStateCompleteCheck () {
787
+ if (--readyStateCompleteCnt === 0 && !noLoadEventRetriggers)
788
+ document.dispatchEvent(new Event('readystatechange'));
789
+ }
790
+
791
+ function processImportMap (script) {
792
+ if (script.ep) // ep marker = script processed
793
+ return;
794
+ // empty inline scripts sometimes show before domready
795
+ if (!script.src && !script.innerHTML)
796
+ return;
797
+ script.ep = true;
798
+ // we dont currently support multiple, external or dynamic imports maps in polyfill mode to match native
799
+ if (script.src) {
800
+ if (!shimMode)
801
+ return;
802
+ importMapSrcOrLazy = true;
803
+ }
804
+ if (acceptingImportMaps) {
805
+ importMapPromise = importMapPromise
806
+ .then(async () => {
807
+ importMap = resolveAndComposeImportMap(script.src ? await (await doFetch(script.src, getFetchOpts(script))).json() : JSON.parse(script.innerHTML), script.src || baseUrl, importMap);
808
+ })
809
+ .catch(throwError);
810
+ if (!shimMode)
811
+ acceptingImportMaps = false;
812
+ }
813
+ }
814
+
815
+ function processScript (script) {
816
+ if (script.ep) // ep marker = script processed
817
+ return;
818
+ if (script.getAttribute('noshim') !== null)
819
+ return;
820
+ // empty inline scripts sometimes show before domready
821
+ if (!script.src && !script.innerHTML)
822
+ return;
823
+ script.ep = true;
824
+ // does this load block readystate complete
825
+ const isBlockingReadyScript = script.getAttribute('async') === null && readyStateCompleteCnt > 0;
826
+ // does this load block DOMContentLoaded
827
+ const isDomContentLoadedScript = domContentLoadedCnt > 0;
828
+ if (isBlockingReadyScript) readyStateCompleteCnt++;
829
+ if (isDomContentLoadedScript) domContentLoadedCnt++;
830
+ const loadPromise = topLevelLoad(script.src || baseUrl, getFetchOpts(script), !script.src && script.innerHTML, !shimMode, isBlockingReadyScript && lastStaticLoadPromise).catch(throwError);
831
+ if (isBlockingReadyScript)
832
+ lastStaticLoadPromise = loadPromise.then(readyStateCompleteCheck);
833
+ if (isDomContentLoadedScript)
834
+ loadPromise.then(domContentLoadedCheck);
835
+ }
836
+
837
+ const fetchCache = {};
838
+ function processPreload (link) {
839
+ if (link.ep) // ep marker = processed
840
+ return;
841
+ link.ep = true;
842
+ if (fetchCache[link.href])
843
+ return;
844
+ fetchCache[link.href] = fetchModule(link.href, getFetchOpts(link));
843
845
  }
844
846
 
845
847
  })();