UNPKG
todomvc
Version:
latest (0.1.1)
0.1.1
0.1.0
> Helping you select an MV\* framework
todomvc
/
examples
/
cujo
/
app
/
create
/
cleanTodo.js
12 lines
(9 loc)
•
192 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
/*global define */
define
(
function
(
) {
'use strict'
;
return
function
(
todo
) { todo.
text
= todo.
text
&& todo.
text
.
trim
() ||
''
; todo.
complete
= !!todo.
complete
;
return
todo; }; });