Ryan Rolnicki
Ryan Rolnicki
@timcassell Thanks for that! That's an interesting way to get around the issue - I was hoping there was some way to get a return value from an await by...
Sure, I'll give it a go :)
I didn't find time for this after all, so as far as I know it's available On Tue, Apr 12, 2022, 6:27 PM Leonard Kioi kinyanjui < ***@***.***> wrote: >...
It has padding at the end, but that's fine - if I write 51 bits of data and actually serialize a bit extra, it's not optimal but it's fine because...
Here's a [gist of the code](https://gist.github.com/rollie42/4fad6b50e9394b132565ae9d946edd88) - really what would be ideal is to allow an arbitrary serialization, say something like `encodeToCharacterSet(char[])`; so to use, ``` const bitSet = BitArray.from("111100111010")...
Created PR with this change - let me know :) I put it on the 'extension' repo instead of this one, as this one seems to be for matching the...
Fwiw, I got a hacky horrible inefficient version of "ArrayBuffer to BitArray" to work via the following ``` const vals = [] for(const b of new Uint8Array(buffer)) { for (let...
I actually have a use case! I have a settings object in my react app; it has a great number of boolean or near boolean enums. I want to store...
Also facing a similar issue, which seems to appear when calling [Document.clear](https://github.com/nextapps-de/flexsearch/blob/c28f52c09b7aa60ea57ffb2d5fbb4f6a3366cada/src/document.js#L480), which I believe calls [IdxDB.clear](https://github.com/nextapps-de/flexsearch/blob/master/src/db/indexeddb/index.js#L188). I notice that a version change could trigger `this.db` being set to null...