Skip to content

Instantly share code, notes, and snippets.

@choonkending
Last active June 5, 2017 12:36
Show Gist options
  • Save choonkending/b00860222d8e5dcbff17295277b77913 to your computer and use it in GitHub Desktop.
Save choonkending/b00860222d8e5dcbff17295277b77913 to your computer and use it in GitHub Desktop.
const getUserFromLocalStorage = keyName => {
const str = localStorage.getItem(keyName);
return JSON.parse(str);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment