freezer icon indicating copy to clipboard operation
freezer copied to clipboard

A tree data structure that emits events on updates, even if the modification is triggered by one of the leaves, making it easier to think in a reactive way.

Results 15 freezer issues
Sort by recently updated
recently updated
newest added

When running the following code freezer correctly warns about calling remove on a detached node ```js const data = { a: { aa: {}, ab: {}, ac: {}, ad: {}...

I got a weird issue. Sometimes, the set function is not working. the value is not updating in Freezer. Still i'm seeing the older value. Please help me to handle...

The toJS method on line 307 of README.md is missing parenthesis.

Hey there! Lately we worked a lot with Typescript and React and we have noticed that nobody has yet made a declaration file for typescript on FreezerJS. We have tried...

Fixing typo in README to save newcomers any frustration.

We have to check if every API method is mentioned in docs.

I find that I use transact all over the place, and I "thought" I was doing it correctly. ``` store.something.transact(); store.something.set('a',1); store.something.set('b',2); ``` That has been working great ... but...

Maybe I am mistaken, but when I try to pivot on an entire freezer object, I don't get back the object, but rather the changed node. ```javascript free = new...

Sorting arrays does not appear to be sorted. ```js > var Freezer = require('freezer-js') > var f = new Freezer([3,2,1]); > f.get().sort(); TypeError: Cannot assign to read only property '1'...