Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. code = '';
  2.  
  3. Object.keys(localStorage).forEach(k => {
  4. if (k === 'reduxState') return;
  5. code += `localStorage[${JSON.stringify(k)}] = ${JSON.stringify(localStorage[k])};\n`;
  6. });
  7.  
  8. code += 'window.location.reload()'
  9.  
  10. copy(code)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement