mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2024-12-23 16:13:14 +01:00
874 lines
49 KiB
JavaScript
874 lines
49 KiB
JavaScript
|
/* ES Module Shims 1.5.9 */
|
||
|
(function () {
|
||
|
|
||
|
const hasWindow = typeof window !== 'undefined';
|
||
|
const hasDocument = typeof document !== 'undefined';
|
||
|
|
||
|
const noop = () => {};
|
||
|
|
||
|
const optionsScript = hasDocument ? document.querySelector('script[type=esms-options]') : undefined;
|
||
|
|
||
|
const esmsInitOptions = optionsScript ? JSON.parse(optionsScript.innerHTML) : {};
|
||
|
Object.assign(esmsInitOptions, self.esmsInitOptions || {});
|
||
|
|
||
|
let shimMode = hasDocument ? !!esmsInitOptions.shimMode : true;
|
||
|
|
||
|
const importHook = globalHook(shimMode && esmsInitOptions.onimport);
|
||
|
const resolveHook = globalHook(shimMode && esmsInitOptions.resolve);
|
||
|
let fetchHook = esmsInitOptions.fetch ? globalHook(esmsInitOptions.fetch) : fetch;
|
||
|
const metaHook = esmsInitOptions.meta ? globalHook(shimMode && esmsInitOptions.meta) : noop;
|
||
|
|
||
|
const skip = esmsInitOptions.skip ? new RegExp(esmsInitOptions.skip) : null;
|
||
|
|
||
|
const mapOverrides = esmsInitOptions.mapOverrides;
|
||
|
|
||
|
let nonce = esmsInitOptions.nonce;
|
||
|
if (!nonce && hasDocument) {
|
||
|
const nonceElement = document.querySelector('script[nonce]');
|
||
|
if (nonceElement)
|
||
|
nonce = nonceElement.nonce || nonceElement.getAttribute('nonce');
|
||
|
}
|
||
|
|
||
|
const onerror = globalHook(esmsInitOptions.onerror || noop);
|
||
|
const onpolyfill = esmsInitOptions.onpolyfill ? globalHook(esmsInitOptions.onpolyfill) : () => {
|
||
|
console.log('%c^^ Module TypeError above is polyfilled and can be ignored ^^', 'font-weight:900;color:#391');
|
||
|
};
|
||
|
|
||
|
const { revokeBlobURLs, noLoadEventRetriggers, enforceIntegrity } = esmsInitOptions;
|
||
|
|
||
|
function globalHook (name) {
|
||
|
return typeof name === 'string' ? self[name] : name;
|
||
|
}
|
||
|
|
||
|
const enable = Array.isArray(esmsInitOptions.polyfillEnable) ? esmsInitOptions.polyfillEnable : [];
|
||
|
const cssModulesEnabled = enable.includes('css-modules');
|
||
|
const jsonModulesEnabled = enable.includes('json-modules');
|
||
|
|
||
|
const edge = !navigator.userAgentData && !!navigator.userAgent.match(/Edge\/\d+\.\d+/);
|
||
|
|
||
|
const baseUrl = hasDocument
|
||
|
? document.baseURI
|
||
|
: `${location.protocol}//${location.host}${location.pathname.includes('/')
|
||
|
? location.pathname.slice(0, location.pathname.lastIndexOf('/') + 1)
|
||
|
: location.pathname}`;
|
||
|
|
||
|
function createBlob (source, type = 'text/javascript') {
|
||
|
return URL.createObjectURL(new Blob([source], { type }));
|
||
|
}
|
||
|
|
||
|
const eoop = err => setTimeout(() => { throw err });
|
||
|
|
||
|
const throwError = err => { (self.reportError || hasWindow && window.safari && console.error || eoop)(err), void onerror(err); };
|
||
|
|
||
|
function fromParent (parent) {
|
||
|
return parent ? ` imported from ${parent}` : '';
|
||
|
}
|
||
|
|
||
|
let importMapSrcOrLazy = false;
|
||
|
|
||
|
function setImportMapSrcOrLazy () {
|
||
|
importMapSrcOrLazy = true;
|
||
|
}
|
||
|
|
||
|
// shim mode is determined on initialization, no late shim mode
|
||
|
if (!shimMode) {
|
||
|
if (document.querySelectorAll('script[type=module-shim],script[type=importmap-shim],link[rel=modulepreload-shim]').length) {
|
||
|
shimMode = true;
|
||
|
}
|
||
|
else {
|
||
|
let seenScript = false;
|
||
|
for (const script of document.querySelectorAll('script[type=module],script[type=importmap]')) {
|
||
|
if (!seenScript) {
|
||
|
if (script.type === 'module' && !script.ep)
|
||
|
seenScript = true;
|
||
|
}
|
||
|
else if (script.type === 'importmap' && seenScript) {
|
||
|
importMapSrcOrLazy = true;
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const backslashRegEx = /\\/g;
|
||
|
|
||
|
function isURL (url) {
|
||
|
if (url.indexOf(':') === -1) return false;
|
||
|
try {
|
||
|
new URL(url);
|
||
|
return true;
|
||
|
}
|
||
|
catch (_) {
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* Import maps implementation
|
||
|
*
|
||
|
* To make lookups fast we pre-resolve the entire import map
|
||
|
* and then match based on backtracked hash lookups
|
||
|
*
|
||
|
*/
|
||
|
function resolveUrl (relUrl, parentUrl) {
|
||
|
return resolveIfNotPlainOrUrl(relUrl, parentUrl) || (isURL(relUrl) ? relUrl : resolveIfNotPlainOrUrl('./' + relUrl, parentUrl));
|
||
|
}
|
||
|
|
||
|
function resolveIfNotPlainOrUrl (relUrl, parentUrl) {
|
||
|
// strip off any trailing query params or hashes
|
||
|
const queryHashIndex = parentUrl.indexOf('?', parentUrl.indexOf('#') === -1 ? parentUrl.indexOf('#') : parentUrl.length);
|
||
|
if (queryHashIndex !== -1)
|
||
|
parentUrl = parentUrl.slice(0, queryHashIndex);
|
||
|
if (relUrl.indexOf('\\') !== -1)
|
||
|
relUrl = relUrl.replace(backslashRegEx, '/');
|
||
|
// protocol-relative
|
||
|
if (relUrl[0] === '/' && relUrl[1] === '/') {
|
||
|
return parentUrl.slice(0, parentUrl.indexOf(':') + 1) + relUrl;
|
||
|
}
|
||
|
// relative-url
|
||
|
else if (relUrl[0] === '.' && (relUrl[1] === '/' || relUrl[1] === '.' && (relUrl[2] === '/' || relUrl.length === 2 && (relUrl += '/')) ||
|
||
|
relUrl.length === 1 && (relUrl += '/')) ||
|
||
|
relUrl[0] === '/') {
|
||
|
const parentProtocol = parentUrl.slice(0, parentUrl.indexOf(':') + 1);
|
||
|
// Disabled, but these cases will give inconsistent results for deep backtracking
|
||
|
//if (parentUrl[parentProtocol.length] !== '/')
|
||
|
// throw new Error('Cannot resolve');
|
||
|
// read pathname from parent URL
|
||
|
// pathname taken to be part after leading "/"
|
||
|
let pathname;
|
||
|
if (parentUrl[parentProtocol.length + 1] === '/') {
|
||
|
// resolving to a :// so we need to read out the auth and host
|
||
|
if (parentProtocol !== 'file:') {
|
||
|
pathname = parentUrl.slice(parentProtocol.length + 2);
|
||
|
pathname = pathname.slice(pathname.indexOf('/') + 1);
|
||
|
}
|
||
|
else {
|
||
|
pathname = parentUrl.slice(8);
|
||
|
}
|
||
|
}
|
||
|
else {
|
||
|
// resolving to :/ so pathname is the /... part
|
||
|
pathname = parentUrl.slice(parentProtocol.length + (parentUrl[parentProtocol.length] === '/'));
|
||
|
}
|
||
|
|
||
|
if (relUrl[0] === '/')
|
||
|
return parentUrl.slice(0, parentUrl.length - pathname.length - 1) + relUrl;
|
||
|
|
||
|
// join together and split for removal of .. and . segments
|
||
|
// looping the string instead of anything fancy for perf reasons
|
||
|
// '../../../../../z' resolved to 'x/y' is just 'z'
|
||
|
const segmented = pathname.slice(0, pathname.lastIndexOf('/') + 1) + relUrl;
|
||
|
|
||
|
const output = [];
|
||
|
let segmentIndex = -1;
|
||
|
for (let i = 0; i < segmented.length; i++) {
|
||
|
// busy reading a segment - only terminate on '/'
|
||
|
if (segmentIndex !== -1) {
|
||
|
if (segmented[i] === '/') {
|
||
|
output.push(segmented.slice(segmentIndex, i + 1));
|
||
|
segmentIndex = -1;
|
||
|
}
|
||
|
continue;
|
||
|
}
|
||
|
// new segment - check if it is relative
|
||
|
else if (segmented[i] === '.') {
|
||
|
// ../ segment
|
||
|
if (segmented[i + 1] === '.' && (segmented[i + 2] === '/' || i + 2 === segmented.length)) {
|
||
|
output.pop();
|
||
|
i += 2;
|
||
|
continue;
|
||
|
}
|
||
|
// ./ segment
|
||
|
else if (segmented[i + 1] === '/' || i + 1 === segmented.length) {
|
||
|
i += 1;
|
||
|
continue;
|
||
|
}
|
||
|
}
|
||
|
// it is the start of a new segment
|
||
|
while (segmented[i] === '/') i++;
|
||
|
segmentIndex = i;
|
||
|
}
|
||
|
// finish reading out the last segment
|
||
|
if (segmentIndex !== -1)
|
||
|
output.push(segmented.slice(segmentIndex));
|
||
|
return parentUrl.slice(0, parentUrl.length - pathname.length) + output.join('');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function resolveAndComposeImportMap (json, baseUrl, parentMap) {
|
||
|
const outMap = { imports: Object.assign({}, parentMap.imports), scopes: Object.assign({}, parentMap.scopes) };
|
||
|
|
||
|
if (json.imports)
|
||
|
resolveAndComposePackages(json.imports, outMap.imports, baseUrl, parentMap);
|
||
|
|
||
|
if (json.scopes)
|
||
|
for (let s in json.scopes) {
|
||
|
const resolvedScope = resolveUrl(s, baseUrl);
|
||
|
resolveAndComposePackages(json.scopes[s], outMap.scopes[resolvedScope] || (outMap.scopes[resolvedScope] = {}), baseUrl, parentMap);
|
||
|
}
|
||
|
|
||
|
return outMap;
|
||
|
}
|
||
|
|
||
|
function getMatch (path, matchObj) {
|
||
|
if (matchObj[path])
|
||
|
return path;
|
||
|
let sepIndex = path.length;
|
||
|
do {
|
||
|
const segment = path.slice(0, sepIndex + 1);
|
||
|
if (segment in matchObj)
|
||
|
return segment;
|
||
|
} while ((sepIndex = path.lastIndexOf('/', sepIndex - 1)) !== -1)
|
||
|
}
|
||
|
|
||
|
function applyPackages (id, packages) {
|
||
|
const pkgName = getMatch(id, packages);
|
||
|
if (pkgName) {
|
||
|
const pkg = packages[pkgName];
|
||
|
if (pkg === null) return;
|
||
|
return pkg + id.slice(pkgName.length);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
function resolveImportMap (importMap, resolvedOrPlain, parentUrl) {
|
||
|
let scopeUrl = parentUrl && getMatch(parentUrl, importMap.scopes);
|
||
|
while (scopeUrl) {
|
||
|
const packageResolution = applyPackages(resolvedOrPlain, importMap.scopes[scopeUrl]);
|
||
|
if (packageResolution)
|
||
|
return packageResolution;
|
||
|
scopeUrl = getMatch(scopeUrl.slice(0, scopeUrl.lastIndexOf('/')), importMap.scopes);
|
||
|
}
|
||
|
return applyPackages(resolvedOrPlain, importMap.imports) || resolvedOrPlain.indexOf(':') !== -1 && resolvedOrPlain;
|
||
|
}
|
||
|
|
||
|
function resolveAndComposePackages (packages, outPackages, baseUrl, parentMap) {
|
||
|
for (let p in packages) {
|
||
|
const resolvedLhs = resolveIfNotPlainOrUrl(p, baseUrl) || p;
|
||
|
if ((!shimMode || !mapOverrides) && outPackages[resolvedLhs] && (outPackages[resolvedLhs] !== packages[resolvedLhs])) {
|
||
|
throw Error(`Rejected map override "${resolvedLhs}" from ${outPackages[resolvedLhs]} to ${packages[resolvedLhs]}.`);
|
||
|
}
|
||
|
let target = packages[p];
|
||
|
if (typeof target !== 'string')
|
||
|
continue;
|
||
|
const mapped = resolveImportMap(parentMap, resolveIfNotPlainOrUrl(target, baseUrl) || target, baseUrl);
|
||
|
if (mapped) {
|
||
|
outPackages[resolvedLhs] = mapped;
|
||
|
continue;
|
||
|
}
|
||
|
console.warn(`Mapping "${p}" -> "${packages[p]}" does not resolve`);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
let err;
|
||
|
window.addEventListener('error', _err => err = _err);
|
||
|
function dynamicImportScript (url, { errUrl = url } = {}) {
|
||
|
err = undefined;
|
||
|
const src = createBlob(`import*as m from'${url}';self._esmsi=m`);
|
||
|
const s = Object.assign(document.createElement('script'), { type: 'module', src, ep: true });
|
||
|
s.setAttribute('nonce', nonce);
|
||
|
s.setAttribute('noshim', '');
|
||
|
const p = new Promise((resolve, reject) => {
|
||
|
// Safari is unique in supporting module script error events
|
||
|
s.addEventListener('error', cb);
|
||
|
s.addEventListener('load', cb);
|
||
|
|
||
|
function cb (_err) {
|
||
|
document.head.removeChild(s);
|
||
|
if (self._esmsi) {
|
||
|
resolve(self._esmsi, baseUrl);
|
||
|
self._esmsi = undefined;
|
||
|
}
|
||
|
else {
|
||
|
reject(!(_err instanceof Event) && _err || err && err.error || new Error(`Error loading or executing the graph of ${errUrl} (check the console for ${src}).`));
|
||
|
err = undefined;
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
document.head.appendChild(s);
|
||
|
return p;
|
||
|
}
|
||
|
|
||
|
let dynamicImport = dynamicImportScript;
|
||
|
|
||
|
const supportsDynamicImportCheck = dynamicImportScript(createBlob('export default u=>import(u)')).then(_dynamicImport => {
|
||
|
if (_dynamicImport)
|
||
|
dynamicImport = _dynamicImport.default;
|
||
|
return !!_dynamicImport;
|
||
|
}, noop);
|
||
|
|
||
|
// support browsers without dynamic import support (eg Firefox 6x)
|
||
|
let supportsJsonAssertions = false;
|
||
|
let supportsCssAssertions = false;
|
||
|
|
||
|
let supportsImportMaps = hasDocument && HTMLScriptElement.supports ? HTMLScriptElement.supports('importmap') : false;
|
||
|
let supportsImportMeta = supportsImportMaps;
|
||
|
let supportsDynamicImport = false;
|
||
|
|
||
|
const featureDetectionPromise = Promise.resolve(supportsImportMaps || supportsDynamicImportCheck).then(_supportsDynamicImport => {
|
||
|
if (!_supportsDynamicImport)
|
||
|
return;
|
||
|
supportsDynamicImport = true;
|
||
|
|
||
|
return Promise.all([
|
||
|
supportsImportMaps || dynamicImport(createBlob('import.meta')).then(() => supportsImportMeta = true, noop),
|
||
|
cssModulesEnabled && dynamicImport(createBlob(`import"${createBlob('', 'text/css')}"assert{type:"css"}`)).then(() => supportsCssAssertions = true, noop),
|
||
|
jsonModulesEnabled && dynamicImport(createBlob(`import"${createBlob('{}', 'text/json')}"assert{type:"json"}`)).then(() => supportsJsonAssertions = true, noop),
|
||
|
supportsImportMaps || hasDocument && (HTMLScriptElement.supports || new Promise(resolve => {
|
||
|
const iframe = document.createElement('iframe');
|
||
|
iframe.style.display = 'none';
|
||
|
iframe.setAttribute('nonce', nonce);
|
||
|
// setting src to a blob URL results in a navigation event in webviews
|
||
|
// setting srcdoc is not supported in React native webviews on iOS
|
||
|
// therefore, we need to first feature detect srcdoc support
|
||
|
iframe.srcdoc = `<!doctype html><script nonce="${nonce}"><${''}/script>`;
|
||
|
document.head.appendChild(iframe);
|
||
|
iframe.onload = () => {
|
||
|
self._$s = v => {
|
||
|
document.head.removeChild(iframe);
|
||
|
supportsImportMaps = v;
|
||
|
delete self._$s;
|
||
|
resolve();
|
||
|
};
|
||
|
const supportsSrcDoc = iframe.contentDocument.head.childNodes.length > 0;
|
||
|
const importMapTest = `<!doctype html><script type=importmap nonce="${nonce}">{"imports":{"x":"${createBlob('')}"}<${''}/script><script nonce="${nonce}">import('x').catch(() => {}).then(v=>parent._$s(!!v))<${''}/script>`;
|
||
|
if (supportsSrcDoc)
|
||
|
iframe.srcdoc = importMapTest;
|
||
|
else
|
||
|
iframe.contentDocument.write(importMapTest);
|
||
|
};
|
||
|
}))
|
||
|
]);
|
||
|
});
|
||
|
|
||
|
/* es-module-lexer 0.10.5 */
|
||
|
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
|
||
|
|
||
|
async function _resolve (id, parentUrl) {
|
||
|
const urlResolved = resolveIfNotPlainOrUrl(id, parentUrl);
|
||
|
return {
|
||
|
r: resolveImportMap(importMap, urlResolved || id, parentUrl) || throwUnresolved(id, parentUrl),
|
||
|
// b = bare specifier
|
||
|
b: !urlResolved && !isURL(id)
|
||
|
};
|
||
|
}
|
||
|
|
||
|
const resolve = resolveHook ? async (id, parentUrl) => {
|
||
|
let result = resolveHook(id, parentUrl, defaultResolve);
|
||
|
// will be deprecated in next major
|
||
|
if (result && result.then)
|
||
|
result = await result;
|
||
|
return result ? { r: result, b: !resolveIfNotPlainOrUrl(id, parentUrl) && !isURL(id) } : _resolve(id, parentUrl);
|
||
|
} : _resolve;
|
||
|
|
||
|
// importShim('mod');
|
||
|
// importShim('mod', { opts });
|
||
|
// importShim('mod', { opts }, parentUrl);
|
||
|
// importShim('mod', parentUrl);
|
||
|
async function importShim (id, ...args) {
|
||
|
// parentUrl if present will be the last argument
|
||
|
let parentUrl = args[args.length - 1];
|
||
|
if (typeof parentUrl !== 'string')
|
||
|
parentUrl = baseUrl;
|
||
|
// needed for shim check
|
||
|
await initPromise;
|
||
|
if (importHook) await importHook(id, typeof args[1] !== 'string' ? args[1] : {}, parentUrl);
|
||
|
if (acceptingImportMaps || shimMode || !baselinePassthrough) {
|
||
|
if (hasDocument)
|
||
|
processImportMaps();
|
||
|
|
||
|
if (!shimMode)
|
||
|
acceptingImportMaps = false;
|
||
|
}
|
||
|
await importMapPromise;
|
||
|
return topLevelLoad((await resolve(id, parentUrl)).r, { credentials: 'same-origin' });
|
||
|
}
|
||
|
|
||
|
self.importShim = importShim;
|
||
|
|
||
|
function defaultResolve (id, parentUrl) {
|
||
|
return resolveImportMap(importMap, resolveIfNotPlainOrUrl(id, parentUrl) || id, parentUrl) || throwUnresolved(id, parentUrl);
|
||
|
}
|
||
|
|
||
|
function throwUnresolved (id, parentUrl) {
|
||
|
throw Error(`Unable to resolve specifier '${id}'${fromParent(parentUrl)}`);
|
||
|
}
|
||
|
|
||
|
const resolveSync = (id, parentUrl = baseUrl) => {
|
||
|
parentUrl = `${parentUrl}`;
|
||
|
const result = resolveHook && resolveHook(id, parentUrl, defaultResolve);
|
||
|
return result && !result.then ? result : defaultResolve(id, parentUrl);
|
||
|
};
|
||
|
|
||
|
function metaResolve (id, parentUrl = this.url) {
|
||
|
return resolveSync(id, parentUrl);
|
||
|
}
|
||
|
|
||
|
importShim.resolve = resolveSync;
|
||
|
importShim.getImportMap = () => JSON.parse(JSON.stringify(importMap));
|
||
|
importShim.addImportMap = importMapIn => {
|
||
|
if (!shimMode) throw new Error('Unsupported in polyfill mode.');
|
||
|
importMap = resolveAndComposeImportMap(importMapIn, baseUrl, importMap);
|
||
|
};
|
||
|
|
||
|
const registry = importShim._r = {};
|
||
|
|
||
|
async function loadAll (load, seen) {
|
||
|
if (load.b || seen[load.u])
|
||
|
return;
|
||
|
seen[load.u] = 1;
|
||
|
await load.L;
|
||
|
await Promise.all(load.d.map(dep => loadAll(dep, seen)));
|
||
|
if (!load.n)
|
||
|
load.n = load.d.some(dep => dep.n);
|
||
|
}
|
||
|
|
||
|
let importMap = { imports: {}, scopes: {} };
|
||
|
let baselinePassthrough;
|
||
|
|
||
|
const initPromise = featureDetectionPromise.then(() => {
|
||
|
baselinePassthrough = esmsInitOptions.polyfillEnable !== true && supportsDynamicImport && supportsImportMeta && supportsImportMaps && (!jsonModulesEnabled || supportsJsonAssertions) && (!cssModulesEnabled || supportsCssAssertions) && !importMapSrcOrLazy && !false;
|
||
|
if (hasDocument) {
|
||
|
if (!supportsImportMaps) {
|
||
|
const supports = HTMLScriptElement.supports || (type => type === 'classic' || type === 'module');
|
||
|
HTMLScriptElement.supports = type => type === 'importmap' || supports(type);
|
||
|
}
|
||
|
if (shimMode || !baselinePassthrough) {
|
||
|
new MutationObserver(mutations => {
|
||
|
for (const mutation of mutations) {
|
||
|
if (mutation.type !== 'childList') continue;
|
||
|
for (const node of mutation.addedNodes) {
|
||
|
if (node.tagName === 'SCRIPT') {
|
||
|
if (node.type === (shimMode ? 'module-shim' : 'module'))
|
||
|
processScript(node);
|
||
|
if (node.type === (shimMode ? 'importmap-shim' : 'importmap'))
|
||
|
processImportMap(node);
|
||
|
}
|
||
|
else if (node.tagName === 'LINK' && node.rel === (shimMode ? 'modulepreload-shim' : 'modulepreload'))
|
||
|
processPreload(node);
|
||
|
}
|
||
|
}
|
||
|
}).observe(document, {childList: true, subtree: true});
|
||
|
processImportMaps();
|
||
|
processScriptsAndPreloads();
|
||
|
if (document.readyState === 'complete') {
|
||
|
readyStateCompleteCheck();
|
||
|
}
|
||
|
else {
|
||
|
async function readyListener() {
|
||
|
await initPromise;
|
||
|
processImportMaps();
|
||
|
if (document.readyState === 'complete') {
|
||
|
readyStateCompleteCheck();
|
||
|
document.removeEventListener('readystatechange', readyListener);
|
||
|
}
|
||
|
}
|
||
|
document.addEventListener('readystatechange', readyListener);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
return undefined;
|
||
|
});
|
||
|
let importMapPromise = initPromise;
|
||
|
let firstPolyfillLoad = true;
|
||
|
let acceptingImportMaps = true;
|
||
|
|
||
|
async function topLevelLoad (url, fetchOpts, source, nativelyLoaded, lastStaticLoadPromise) {
|
||
|
if (!shimMode)
|
||
|
acceptingImportMaps = false;
|
||
|
await importMapPromise;
|
||
|
if (importHook) await importHook(url, typeof fetchOpts !== 'string' ? fetchOpts : {}, '');
|
||
|
// early analysis opt-out - no need to even fetch if we have feature support
|
||
|
if (!shimMode && baselinePassthrough) {
|
||
|
// for polyfill case, only dynamic import needs a return value here, and dynamic import will never pass nativelyLoaded
|
||
|
if (nativelyLoaded)
|
||
|
return null;
|
||
|
await lastStaticLoadPromise;
|
||
|
return dynamicImport(source ? createBlob(source) : url, { errUrl: url || source });
|
||
|
}
|
||
|
const load = getOrCreateLoad(url, fetchOpts, null, source);
|
||
|
const seen = {};
|
||
|
await loadAll(load, seen);
|
||
|
lastLoad = undefined;
|
||
|
resolveDeps(load, seen);
|
||
|
await lastStaticLoadPromise;
|
||
|
if (source && !shimMode && !load.n && !false) {
|
||
|
const module = await dynamicImport(createBlob(source), { errUrl: source });
|
||
|
if (revokeBlobURLs) revokeObjectURLs(Object.keys(seen));
|
||
|
return module;
|
||
|
}
|
||
|
if (firstPolyfillLoad && !shimMode && load.n && nativelyLoaded) {
|
||
|
onpolyfill();
|
||
|
firstPolyfillLoad = false;
|
||
|
}
|
||
|
const module = await dynamicImport(!shimMode && !load.n && nativelyLoaded ? load.u : load.b, { errUrl: load.u });
|
||
|
// if the top-level load is a shell, run its update function
|
||
|
if (load.s)
|
||
|
(await dynamicImport(load.s)).u$_(module);
|
||
|
if (revokeBlobURLs) revokeObjectURLs(Object.keys(seen));
|
||
|
// when tla is supported, this should return the tla promise as an actual handle
|
||
|
// so readystate can still correspond to the sync subgraph exec completions
|
||
|
return module;
|
||
|
}
|
||
|
|
||
|
function revokeObjectURLs(registryKeys) {
|
||
|
let batch = 0;
|
||
|
const keysLength = registryKeys.length;
|
||
|
const schedule = self.requestIdleCallback ? self.requestIdleCallback : self.requestAnimationFrame;
|
||
|
schedule(cleanup);
|
||
|
function cleanup() {
|
||
|
const batchStartIndex = batch * 100;
|
||
|
if (batchStartIndex > keysLength) return
|
||
|
for (const key of registryKeys.slice(batchStartIndex, batchStartIndex + 100)) {
|
||
|
const load = registry[key];
|
||
|
if (load) URL.revokeObjectURL(load.b);
|
||
|
}
|
||
|
batch++;
|
||
|
schedule(cleanup);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function urlJsString (url) {
|
||
|
return `'${url.replace(/'/g, "\\'")}'`;
|
||
|
}
|
||
|
|
||
|
let lastLoad;
|
||
|
function resolveDeps (load, seen) {
|
||
|
if (load.b || !seen[load.u])
|
||
|
return;
|
||
|
seen[load.u] = 0;
|
||
|
|
||
|
for (const dep of load.d)
|
||
|
resolveDeps(dep, seen);
|
||
|
|
||
|
const [imports] = load.a;
|
||
|
|
||
|
// "execution"
|
||
|
const source = load.S;
|
||
|
|
||
|
// edge doesnt execute sibling in order, so we fix this up by ensuring all previous executions are explicit dependencies
|
||
|
let resolvedSource = edge && lastLoad ? `import '${lastLoad}';` : '';
|
||
|
|
||
|
if (!imports.length) {
|
||
|
resolvedSource += source;
|
||
|
}
|
||
|
else {
|
||
|
// once all deps have loaded we can inline the dependency resolution blobs
|
||
|
// and define this blob
|
||
|
let lastIndex = 0, depIndex = 0, dynamicImportEndStack = [];
|
||
|
function pushStringTo (originalIndex) {
|
||
|
while (dynamicImportEndStack[dynamicImportEndStack.length - 1] < originalIndex) {
|
||
|
const dynamicImportEnd = dynamicImportEndStack.pop();
|
||
|
resolvedSource += `${source.slice(lastIndex, dynamicImportEnd)}, ${urlJsString(load.r)}`;
|
||
|
lastIndex = dynamicImportEnd;
|
||
|
}
|
||
|
resolvedSource += source.slice(lastIndex, originalIndex);
|
||
|
lastIndex = originalIndex;
|
||
|
}
|
||
|
for (const { s: start, ss: statementStart, se: statementEnd, d: dynamicImportIndex } of imports) {
|
||
|
// dependency source replacements
|
||
|
if (dynamicImportIndex === -1) {
|
||
|
let depLoad = load.d[depIndex++], blobUrl = depLoad.b, cycleShell = !blobUrl;
|
||
|
if (cycleShell) {
|
||
|
// circular shell creation
|
||
|
if (!(blobUrl = depLoad.s)) {
|
||
|
blobUrl = depLoad.s = createBlob(`export function u$_(m){${
|
||
|
depLoad.a[1].map(
|
||
|
name => name === 'default' ? `d$_=m.default` : `${name}=m.${name}`
|
||
|
).join(',')
|
||
|
}}${
|
||
|
depLoad.a[1].map(name =>
|
||
|
name === 'default' ? `let d$_;export{d$_ as default}` : `export let ${name}`
|
||
|
).join(';')
|
||
|
}\n//# sourceURL=${depLoad.r}?cycle`);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
pushStringTo(start - 1);
|
||
|
resolvedSource += `/*${source.slice(start - 1, statementEnd)}*/${urlJsString(blobUrl)}`;
|
||
|
|
||
|
// circular shell execution
|
||
|
if (!cycleShell && depLoad.s) {
|
||
|
resolvedSource += `;import*as m$_${depIndex} from'${depLoad.b}';import{u$_ as u$_${depIndex}}from'${depLoad.s}';u$_${depIndex}(m$_${depIndex})`;
|
||
|
depLoad.s = undefined;
|
||
|
}
|
||
|
lastIndex = statementEnd;
|
||
|
}
|
||
|
// import.meta
|
||
|
else if (dynamicImportIndex === -2) {
|
||
|
load.m = { url: load.r, resolve: metaResolve };
|
||
|
metaHook(load.m, load.u);
|
||
|
pushStringTo(start);
|
||
|
resolvedSource += `importShim._r[${urlJsString(load.u)}].m`;
|
||
|
lastIndex = statementEnd;
|
||
|
}
|
||
|
// dynamic import
|
||
|
else {
|
||
|
pushStringTo(statementStart + 6);
|
||
|
resolvedSource += `Shim(`;
|
||
|
dynamicImportEndStack.push(statementEnd - 1);
|
||
|
lastIndex = start;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
pushStringTo(source.length);
|
||
|
}
|
||
|
|
||
|
let hasSourceURL = false;
|
||
|
resolvedSource = resolvedSource.replace(sourceMapURLRegEx, (match, isMapping, url) => (hasSourceURL = !isMapping, match.replace(url, () => new URL(url, load.r))));
|
||
|
if (!hasSourceURL)
|
||
|
resolvedSource += '\n//# sourceURL=' + load.r;
|
||
|
|
||
|
load.b = lastLoad = createBlob(resolvedSource);
|
||
|
load.S = undefined;
|
||
|
}
|
||
|
|
||
|
// ; and // trailer support added for Ruby on Rails 7 source maps compatibility
|
||
|
// https://github.com/guybedford/es-module-shims/issues/228
|
||
|
const sourceMapURLRegEx = /\n\/\/# source(Mapping)?URL=([^\n]+)\s*((;|\/\/[^#][^\n]*)\s*)*$/;
|
||
|
|
||
|
const jsContentType = /^(text|application)\/(x-)?javascript(;|$)/;
|
||
|
const jsonContentType = /^(text|application)\/json(;|$)/;
|
||
|
const cssContentType = /^(text|application)\/css(;|$)/;
|
||
|
|
||
|
const cssUrlRegEx = /url\(\s*(?:(["'])((?:\\.|[^\n\\"'])+)\1|((?:\\.|[^\s,"'()\\])+))\s*\)/g;
|
||
|
|
||
|
// restrict in-flight fetches to a pool of 100
|
||
|
let p = [];
|
||
|
let c = 0;
|
||
|
function pushFetchPool () {
|
||
|
if (++c > 100)
|
||
|
return new Promise(r => p.push(r));
|
||
|
}
|
||
|
function popFetchPool () {
|
||
|
c--;
|
||
|
if (p.length)
|
||
|
p.shift()();
|
||
|
}
|
||
|
|
||
|
async function doFetch (url, fetchOpts, parent) {
|
||
|
if (enforceIntegrity && !fetchOpts.integrity)
|
||
|
throw Error(`No integrity for ${url}${fromParent(parent)}.`);
|
||
|
const poolQueue = pushFetchPool();
|
||
|
if (poolQueue) await poolQueue;
|
||
|
try {
|
||
|
var res = await fetchHook(url, fetchOpts);
|
||
|
}
|
||
|
catch (e) {
|
||
|
e.message = `Unable to fetch ${url}${fromParent(parent)} - see network log for details.\n` + e.message;
|
||
|
throw e;
|
||
|
}
|
||
|
finally {
|
||
|
popFetchPool();
|
||
|
}
|
||
|
if (!res.ok)
|
||
|
throw Error(`${res.status} ${res.statusText} ${res.url}${fromParent(parent)}`);
|
||
|
return res;
|
||
|
}
|
||
|
|
||
|
async function fetchModule (url, fetchOpts, parent) {
|
||
|
const res = await doFetch(url, fetchOpts, parent);
|
||
|
const contentType = res.headers.get('content-type');
|
||
|
if (jsContentType.test(contentType))
|
||
|
return { r: res.url, s: await res.text(), t: 'js' };
|
||
|
else if (jsonContentType.test(contentType))
|
||
|
return { r: res.url, s: `export default ${await res.text()}`, t: 'json' };
|
||
|
else if (cssContentType.test(contentType)) {
|
||
|
return { r: res.url, s: `var s=new CSSStyleSheet();s.replaceSync(${
|
||
|
JSON.stringify((await res.text()).replace(cssUrlRegEx, (_match, quotes = '', relUrl1, relUrl2) => `url(${quotes}${resolveUrl(relUrl1 || relUrl2, url)}${quotes})`))
|
||
|
});export default s;`, t: 'css' };
|
||
|
}
|
||
|
else
|
||
|
throw Error(`Unsupported Content-Type "${contentType}" loading ${url}${fromParent(parent)}. Modules must be served with a valid MIME type like application/javascript.`);
|
||
|
}
|
||
|
|
||
|
function getOrCreateLoad (url, fetchOpts, parent, source) {
|
||
|
let load = registry[url];
|
||
|
if (load && !source)
|
||
|
return load;
|
||
|
|
||
|
load = {
|
||
|
// url
|
||
|
u: url,
|
||
|
// response url
|
||
|
r: source ? url : undefined,
|
||
|
// fetchPromise
|
||
|
f: undefined,
|
||
|
// source
|
||
|
S: undefined,
|
||
|
// linkPromise
|
||
|
L: undefined,
|
||
|
// analysis
|
||
|
a: undefined,
|
||
|
// deps
|
||
|
d: undefined,
|
||
|
// blobUrl
|
||
|
b: undefined,
|
||
|
// shellUrl
|
||
|
s: undefined,
|
||
|
// needsShim
|
||
|
n: false,
|
||
|
// type
|
||
|
t: null,
|
||
|
// meta
|
||
|
m: null
|
||
|
};
|
||
|
if (registry[url]) {
|
||
|
let i = 0;
|
||
|
while (registry[load.u + ++i]);
|
||
|
load.u += i;
|
||
|
}
|
||
|
registry[load.u] = load;
|
||
|
|
||
|
load.f = (async () => {
|
||
|
if (!source) {
|
||
|
// preload fetch options override fetch options (race)
|
||
|
let t;
|
||
|
({ r: load.r, s: source, t } = await (fetchCache[url] || fetchModule(url, fetchOpts, parent)));
|
||
|
if (t && !shimMode) {
|
||
|
if (t === 'css' && !cssModulesEnabled || t === 'json' && !jsonModulesEnabled)
|
||
|
throw Error(`${t}-modules require <script type="esms-options">{ "polyfillEnable": ["${t}-modules"] }<${''}/script>`);
|
||
|
if (t === 'css' && !supportsCssAssertions || t === 'json' && !supportsJsonAssertions)
|
||
|
load.n = true;
|
||
|
}
|
||
|
}
|
||
|
try {
|
||
|
load.a = parse(source, load.u);
|
||
|
}
|
||
|
catch (e) {
|
||
|
throwError(e);
|
||
|
load.a = [[], [], false];
|
||
|
}
|
||
|
load.S = source;
|
||
|
return load;
|
||
|
})();
|
||
|
|
||
|
load.L = load.f.then(async () => {
|
||
|
let childFetchOpts = fetchOpts;
|
||
|
load.d = (await Promise.all(load.a[0].map(async ({ n, d }) => {
|
||
|
if (d >= 0 && !supportsDynamicImport || d === -2 && !supportsImportMeta)
|
||
|
load.n = true;
|
||
|
if (d !== -1 || !n) return;
|
||
|
const { r, b } = await resolve(n, load.r || load.u);
|
||
|
if (b && (!supportsImportMaps || importMapSrcOrLazy))
|
||
|
load.n = true;
|
||
|
if (skip && skip.test(r)) return { b: r };
|
||
|
if (childFetchOpts.integrity)
|
||
|
childFetchOpts = Object.assign({}, childFetchOpts, { integrity: undefined });
|
||
|
return getOrCreateLoad(r, childFetchOpts, load.r).f;
|
||
|
}))).filter(l => l);
|
||
|
});
|
||
|
|
||
|
return load;
|
||
|
}
|
||
|
|
||
|
function processScriptsAndPreloads () {
|
||
|
for (const script of document.querySelectorAll(shimMode ? 'script[type=module-shim]' : 'script[type=module]'))
|
||
|
processScript(script);
|
||
|
for (const link of document.querySelectorAll(shimMode ? 'link[rel=modulepreload-shim]' : 'link[rel=modulepreload]'))
|
||
|
processPreload(link);
|
||
|
}
|
||
|
|
||
|
function processImportMaps () {
|
||
|
for (const script of document.querySelectorAll(shimMode ? 'script[type="importmap-shim"]' : 'script[type="importmap"]'))
|
||
|
processImportMap(script);
|
||
|
}
|
||
|
|
||
|
function getFetchOpts (script) {
|
||
|
const fetchOpts = {};
|
||
|
if (script.integrity)
|
||
|
fetchOpts.integrity = script.integrity;
|
||
|
if (script.referrerpolicy)
|
||
|
fetchOpts.referrerPolicy = script.referrerpolicy;
|
||
|
if (script.crossorigin === 'use-credentials')
|
||
|
fetchOpts.credentials = 'include';
|
||
|
else if (script.crossorigin === 'anonymous')
|
||
|
fetchOpts.credentials = 'omit';
|
||
|
else
|
||
|
fetchOpts.credentials = 'same-origin';
|
||
|
return fetchOpts;
|
||
|
}
|
||
|
|
||
|
let lastStaticLoadPromise = Promise.resolve();
|
||
|
|
||
|
let domContentLoadedCnt = 1;
|
||
|
function domContentLoadedCheck () {
|
||
|
if (--domContentLoadedCnt === 0 && !noLoadEventRetriggers)
|
||
|
document.dispatchEvent(new Event('DOMContentLoaded'));
|
||
|
}
|
||
|
// this should always trigger because we assume es-module-shims is itself a domcontentloaded requirement
|
||
|
if (hasDocument) {
|
||
|
document.addEventListener('DOMContentLoaded', async () => {
|
||
|
await initPromise;
|
||
|
domContentLoadedCheck();
|
||
|
if (shimMode || !baselinePassthrough) {
|
||
|
processImportMaps();
|
||
|
processScriptsAndPreloads();
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
let readyStateCompleteCnt = 1;
|
||
|
function readyStateCompleteCheck () {
|
||
|
if (--readyStateCompleteCnt === 0 && !noLoadEventRetriggers)
|
||
|
document.dispatchEvent(new Event('readystatechange'));
|
||
|
}
|
||
|
|
||
|
function processImportMap (script) {
|
||
|
if (script.ep) // ep marker = script processed
|
||
|
return;
|
||
|
// empty inline scripts sometimes show before domready
|
||
|
if (!script.src && !script.innerHTML)
|
||
|
return;
|
||
|
script.ep = true;
|
||
|
// we dont currently support multiple, external or dynamic imports maps in polyfill mode to match native
|
||
|
if (script.src) {
|
||
|
if (!shimMode)
|
||
|
return;
|
||
|
setImportMapSrcOrLazy();
|
||
|
}
|
||
|
if (acceptingImportMaps) {
|
||
|
importMapPromise = importMapPromise
|
||
|
.then(async () => {
|
||
|
importMap = resolveAndComposeImportMap(script.src ? await (await doFetch(script.src, getFetchOpts(script))).json() : JSON.parse(script.innerHTML), script.src || baseUrl, importMap);
|
||
|
})
|
||
|
.catch(throwError);
|
||
|
if (!shimMode)
|
||
|
acceptingImportMaps = false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function processScript (script) {
|
||
|
if (script.ep) // ep marker = script processed
|
||
|
return;
|
||
|
if (script.getAttribute('noshim') !== null)
|
||
|
return;
|
||
|
// empty inline scripts sometimes show before domready
|
||
|
if (!script.src && !script.innerHTML)
|
||
|
return;
|
||
|
script.ep = true;
|
||
|
// does this load block readystate complete
|
||
|
const isBlockingReadyScript = script.getAttribute('async') === null && readyStateCompleteCnt > 0;
|
||
|
// does this load block DOMContentLoaded
|
||
|
const isDomContentLoadedScript = domContentLoadedCnt > 0;
|
||
|
if (isBlockingReadyScript) readyStateCompleteCnt++;
|
||
|
if (isDomContentLoadedScript) domContentLoadedCnt++;
|
||
|
const loadPromise = topLevelLoad(script.src || baseUrl, getFetchOpts(script), !script.src && script.innerHTML, !shimMode, isBlockingReadyScript && lastStaticLoadPromise).catch(throwError);
|
||
|
if (isBlockingReadyScript)
|
||
|
lastStaticLoadPromise = loadPromise.then(readyStateCompleteCheck);
|
||
|
if (isDomContentLoadedScript)
|
||
|
loadPromise.then(domContentLoadedCheck);
|
||
|
}
|
||
|
|
||
|
const fetchCache = {};
|
||
|
function processPreload (link) {
|
||
|
if (link.ep) // ep marker = processed
|
||
|
return;
|
||
|
link.ep = true;
|
||
|
if (fetchCache[link.href])
|
||
|
return;
|
||
|
fetchCache[link.href] = fetchModule(link.href, getFetchOpts(link));
|
||
|
}
|
||
|
|
||
|
})();
|