Skip to content

Instantly share code, notes, and snippets.

View dasa's full-sized avatar
:octocat:

Dasa Paddock dasa

:octocat:
View GitHub Profile
define(["require", "exports"], function(require, exports) {
var Storage = (function () {
function Storage() {
}
Storage.fetch = function () {
if (!Storage.todos) {
Storage.todos = JSON.parse(localStorage.getItem(Storage.STORAGE_KEY) || '[]');
}
return Storage.todos;
};