at
Size: a a a
at
at
at
DZ
DZ
at
at
at
at
DR
at
at
l
function mapReduce(store, event, fn) {
const reduced = store.map(_ => _).on(event, fn)
reduced.setState(null)
return reduced
}
const id = createEvent('id')
const store = createStore(Map())
const storeItem = mapReduce(store, id, (list, id) => list.get(id))
l
at