UNPKG

todomvc

Version:

> Helping you select an MV\* framework

12 lines (9 loc) 192 B
/*global define */ define(function () { 'use strict'; return function (todo) { todo.text = todo.text && todo.text.trim() || ''; todo.complete = !!todo.complete; return todo; }; });