(function (app) { "use strict" var STORAGE_ID = "todos-mithril" app.storage = { get: function () { return JSON.parse(localStorage.getItem(STORAGE_ID) || "[]") }, put: function (todos) { localStorage.setItem(STORAGE_ID, JSON.stringify(todos)) } } })(this.app || (this.app = {}))