Skip to content

Instantly share code, notes, and snippets.

@x-N0
Created October 16, 2020 17:56
Show Gist options
  • Save x-N0/575ec675d8e0589497e6f6d60e4d2c20 to your computer and use it in GitHub Desktop.
Save x-N0/575ec675d8e0589497e6f6d60e4d2c20 to your computer and use it in GitHub Desktop.
Javascript code to put LocalStorage (K)=>(V) into the session.
var data = JSON.parse(/*paste stringified JSON from clipboard*/);
Object.keys(data).forEach(function (k) {
localStorage.setItem(k, data[k]);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment