Skip to content

Instantly share code, notes, and snippets.

@antfu
Last active August 26, 2016 03:10
Show Gist options
  • Save antfu/1a3d7412b165ee25b40f12fe07c2733a to your computer and use it in GitHub Desktop.
Save antfu/1a3d7412b165ee25b40f12fe07c2733a to your computer and use it in GitHub Desktop.
[JS] Local Storage
/*jshint unused:false */
(function (exports) {
'use strict';
var STORAGE_KEY = 'data';
exports.localStorage = {
fetch: function () {
return JSON.parse(localStorage.getItem(STORAGE_KEY) || '[]');
},
save: function (data) {
localStorage.setItem(STORAGE_KEY, JSON.stringify(data));
}
};
})(window);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment