UNPKG

todomvc

Version:

> Helping you select an MV\* framework

15 lines (13 loc) 293 B
'use strict'; var app = app || {}; (function () { 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)); } }; })();