Skip to content

Instantly share code, notes, and snippets.

@luislobo14rap
Last active May 13, 2018 00:16
Show Gist options
  • Save luislobo14rap/66560f1173e0d54c3f76399c2f7f429c to your computer and use it in GitHub Desktop.
Save luislobo14rap/66560f1173e0d54c3f76399c2f7f429c to your computer and use it in GitHub Desktop.
function setLocalJSON(objName, objValue) {
if (typeof objName == 'string') {
if (objValue.constructor == {}.constructor) {
localStorage.setItem('objJSON-' + objName, JSON.stringify(objValue));
} else {
console.error('setLocalJSON accepts only json objects.');
return false;
};
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment