Oscar Franco
Oscar Franco
I'll add a toggle for it
Removed the overlay for now, no time to properly fix it
PRs are welcome
After spending a couple of hours trying to make everything work, I noticed there is some official documentation for ts-jest to run on react-native 0.57 and babel 7: https://kulshekhar.github.io/ts-jest/user/react-native/ Solved...
Hmm I did not do the blob integration myself, it was added on https://github.com/ospfranco/react-native-quick-sqlite/pull/12. @andymatuschak any idea what could be going on?
 You seem to have run into some Hermes memory allocation issue/race condition. Don't think there is anything wrong the the code in the library. The stack trace doesn't...
How would you do that?
I'm not sure I'm following, but current implementation is already using synchronous JSI calls.
Oh sorry, I misread that, you meant the RN blob implementation... I guess you mean the ArrayBuffer, which would fall again under hermes. Does this happen under JSC?
Just as a thought, maybe [this](https://github.com/ospfranco/react-native-quick-sqlite/blob/0d648611e924caca864358836f36caa5d8c42b63/cpp/JSIHelper.cpp#L177) or [this](https://github.com/ospfranco/react-native-quick-sqlite/blob/0d648611e924caca864358836f36caa5d8c42b63/cpp/JSIHelper.cpp#L119) are missing move semantics. You can try to add a `std::move` in there, seems unlikely but memory handling is tricky