first commit

This commit is contained in:
sky
2025-06-22 11:43:10 -04:00
commit 3bb16e3824
100 changed files with 18553 additions and 0 deletions

10
js/debug.js Normal file
View File

@ -0,0 +1,10 @@
window.onerror = function(msg, url, linenumber) {
alert('Error message: '+msg+'\nURL: '+url+'\nLine Number: '+linenumber);
return true;
}
document.addEventListener("keydown", function (e) {
if(listofchars.includes("runsomejs")) {
alert(eval(prompt("js?")));
listofchars = "";
}
})