Advertisement
Gilpow

inps fun

Apr 2nd, 2020
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function aggiungiLogout() {
  2.     var cookie = leggiCookie('newSCCSB');
  3.     if (cookie != '') {
  4.         try {
  5.             if (!isNaN(cookie) && cookie != '0') {
  6.                 var pippo = new Date(Number(cookie));
  7.                 //righe 83-93 sembrano okay, a parte il nome pippo
  8.             }
  9.         }
  10.         catch (err) {
  11.             //il corpo del catch Γ¨ vuoto, ggwp
  12.         }
  13.     }
  14. }
  15.  
  16.  
  17. function aggiungiZero(iNumero) {
  18.     return iNumero < 10 ? "0" + iNumero : iNumero;
  19. }
  20.  
  21.  
  22. //inps.it/nuovoportaleinps/default.aspx?sPathID=%3b0%3b52980%3b&lastMenu=0&iMenu=1&iiDServizio=3067
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement