I want to be able to view my immutable objects for debugging. It is very difficult for me to view an object by clicking on entries, etc. Ideally, what I would like is the opposite of the formJS function
so
const immutableObj = fromJS({name: 'bob'})
return oppositeJS(immutableObj)
=> {name: 'bob'}
source
share