Questions tagged [immer.js]

js tool to modify immutable object structures (create new structure by modifying existed one)

Provide Internal DSL for immutable structures cloning and modification.

https://github.com/mweststrate/immer

211 questions
-4
votes
1 answer

Keep frozen object as global state

I am playing around with immer.js. Immer.js lock obejct after giving new instance. Is it ok to use this locked object as global state? windows.initialState = {a: 'a'}; const nextState = produce(initialState , draftState => { draftState.a = 'b', …
1 2 3
14
15