Redux-Deduce/redux-deduce

D.INCREMENT_ALL & D.DECREMENT_ALL

Closed this issue · 0 comments

store = {
"0": 0,
"1": 1
}

D.INCREMENT_ALL({ "value": 1 })

expected: store = {
"0": 1,
"1": 2,
}

received: store = {
"0": 0,
"1": 1
}

Same issue with DECREMENT_ALL