tuiHoneyPot

front and back end of my TUI honeypot
Log | Files | Refs | README

localstorage.js (220B)


      1 
      2 function getJwt() {
      3     if (!localStorage) {
      4         console.error("Please update your browser");
      5         return;
      6     }
      7 
      8     return localStorage.getItem("jwt");
      9 }
     10 
     11 function destroyStorage() {
     12     localStorage.clear();
     13 }