test docker container

This commit is contained in:
l4kr
2023-10-02 10:10:43 +02:00
parent 5c90a36d43
commit 5d51e961cb
8 changed files with 2534 additions and 354 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1 +1,25 @@
define(["exports"],function(_exports){function download(url){var a=document.createElement("a");a.download="",a.href=url,a.dispatchEvent(new MouseEvent("click"))}Object.defineProperty(_exports,"__esModule",{value:!0}),_exports.default=function(urls){if(!urls)throw new Error("`urls` required");var delay=0;urls.forEach(function(url){if(!function(url){var a=document.createElement("a");return a.href=url,location.hostname===a.hostname&&location.protocol===a.protocol}(url))return setTimeout(download.bind(null,url),100*++delay);download(url)})}});
define(["exports"], function (_exports) {
function download(url) {
var a = document.createElement("a");
(a.download = ""), (a.href = url), a.dispatchEvent(new MouseEvent("click"));
}
Object.defineProperty(_exports, "__esModule", { value: !0 }),
(_exports.default = function (urls) {
if (!urls) throw new Error("`urls` required");
var delay = 0;
urls.forEach(function (url) {
if (
!(function (url) {
var a = document.createElement("a");
return (
(a.href = url),
location.hostname === a.hostname &&
location.protocol === a.protocol
);
})(url)
)
return setTimeout(download.bind(null, url), 100 * ++delay);
download(url);
});
});
});