Files
open-wc/packages/polyfills-loader/test-node/snapshots/create-polyfills-loader/no-polyfills-no-legacy.js
2020-10-25 08:46:32 +01:00

28 lines
669 B
JavaScript

(function () {
function loadScript(src, type) {
return new Promise(function (resolve) {
var script = document.createElement('script');
function onLoaded() {
if (script.parentElement) {
script.parentElement.removeChild(script);
}
resolve();
}
script.src = src;
script.onload = onLoaded;
script.onerror = function () {
console.error('[polyfills-loader] failed to load: ' + src + ' check the network tab for HTTP status.');
onLoaded();
};
if (type) script.type = type;
document.head.appendChild(script);
});
}
loadScript('/app.js', 'module');
})();