Marc Rousavy

Results 1813 comments of Marc Rousavy

I gotta be honest I'm still pretty torn between either merging this or having the user be responsible for this. There's a few cases where the type safety just isn't...

I agree, yea. I don't think this should be MMKV's duty. Type validation is a whole other project. I really appreciate everyone's thoughts and time that went into this, and...

Any updates on this? The `toDataURL` function is extremely useful.. cc @msand @magicismight

Good idea, but haven't build that yet. I'll gladly accept any PRs if you want to tackle this! :)

The recommended way to use Nitro is as a separate library, and there you don't need Expo Plugins - it just works. So I'm closing this

ah this makes sense! i wonder if a binary serialization is better looking at this now

why not just return the same object? That's reference equality no? ```ts setObj((old) => { if (item.id !== old.id) { return old } return item }) ```