this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 13 lines 435 B view raw
1// actual warning do not fuck with this 2const res = localStorage.getItem("visited"); 3if (res === null) { 4 const cont = confirm( 5 "heads up this page is NAWT accessible, may trigger epilepsy, may hurt your ears, etc. if you continue you do so at your own risk. are you sure you want to stay", 6 ); 7 8 if (cont) { 9 localStorage.setItem("visited", "true"); 10 } else { 11 window.location.assign("https://www.wikipedia.org"); 12 } 13}