Olivier Wietrich
Results
35
issues of
Olivier Wietrich
In the same way we can proxy setters and getters we should be able to proxy the construction of a store.
enhancement
select
1
``` js var store = new Store({ title: 'hello', items: ['hello', 'world'] }) var items = store.select('items'); items.set(0, 'foo'); ``` `select` return a datastore from a key.
enhancement
todo
I added an event 'updated' which is trigerred on set, del and reset. You can choose to trigger or not this event by setting the strict mode to true: ```...
question