UNPKG
todomvc
Version:
latest (0.1.1)
0.1.1
0.1.0
> Helping you select an MV\* framework
todomvc
/
examples
/
flight
/
app
/
js
/
store.js
10 lines
(7 loc)
•
126 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
/*global define */
'use strict'
;
define
([
'depot'
],
function
(
depot
) {
return
depot
(
'todos'
, {
idAttribute
:
'id'
}); });