Skip to content Skip to sidebar Skip to footer
Showing posts with the label Immutable.js

What Is The Difference Between Immutablejs Map() And Fromjs()?

var a = {address: {postcode: 5085}} var b = Immutable.fromJS(a) var c = b.setIn(['address'… Read more What Is The Difference Between Immutablejs Map() And Fromjs()?

Immutable, Why Does My Nested Object Using Fromjs Are Not Immutable When I Use Reselect

I have a bug with immutablejs and reselect. I have the following redux store in my reactjs applicat… Read more Immutable, Why Does My Nested Object Using Fromjs Are Not Immutable When I Use Reselect

Immutable - Change Elements In Array With Slice (no Splice)

How is possible to change 3/4 elements? Expected output is [1,2,4,3,5] let list = [1,2,3,4,5]; cons… Read more Immutable - Change Elements In Array With Slice (no Splice)

Immutable, Why Does My Nested Object Using FromJS Are Not Immutable When I Use Reselect

I have a bug with immutablejs and reselect. I have the following redux store in my reactjs applicat… Read more Immutable, Why Does My Nested Object Using FromJS Are Not Immutable When I Use Reselect