polemius

Results 10 comments of polemius

Thank you! New resetting atom logic was just released in 4.0.0.

@hayyaun Thank you for rising the issue! Could you please provide some code?

@hayyaun I have released 2.9.0 version with using `mergeItem` function. Please check it out

I have released a new 2.3.0 version with your fix.

The new version 2.5.0 with fix just released.

You could pass Storage implementation to `recoilPersist` as storage, and change behavior of `getItem` and `setItem`. For example this storage encode everything in base64 and save it in `localstorage`. ```js...

Hi, you could pass the storage to `recoilPersist` function: ```js import { recoilPersist } from 'recoil-persist' const { persistAtom } = recoilPersist({ storage: localStorage, // configurate which stroage will be...

Thank you for PR. I have run test against this PR and these two are failing: ``` Storage: async ✕ should remove key from storage if reset (83 ms) ✕...

The `default` in atom configuration doesn't work? Could you please add some code?

I have fixed race condition for synchronize storage (like localStorage) in 2.7.0 version. But the problem still exist for async storage.