Jeremy Scheff
Jeremy Scheff
It should somehow be possible to say "make a face that looks like a relative of another face" - basically constrain the randomness so that the output is similar to...
**Is your feature request related to a problem? Please describe.** I made an app using Bubblewrap for a video game I wrote. The game works 100% offline. But I just...
This includes upgrading @types/react and @types/react-dom because old versions of types conflict with the current versions, resulting in a lot of TypeScript errors if you use the current version of...
Node.js now has a built-in [Blob](https://nodejs.org/api/buffer.html#class-blob), so maybe I can use that rather than https://github.com/dumbmatter/fakeIndexedDB/blob/a1c148880d227fa218473efeac11d4e36dfa8b73/src/test/web-platform-tests/wpt-env.js#L7-L11 and maybe also [enable some skipped tests that use Blobs](https://github.com/dumbmatter/fakeIndexedDB/blob/a1c148880d227fa218473efeac11d4e36dfa8b73/src/test/web-platform-tests/run-all.js#L85-L88).
This is an improved version of #151, aimed at solving #150. The general idea is that you specify the auto-incrementing key's name in `DBSchemaValue["autoIncrementKeyPath"]`, and then internally it labels that...
For object stores with auto incrementing primary keys, we know the primary key will be available on all objects read from the database, but not necessarily on all objects written...
First of all, much love for your work here and on the polyfill! When using this library with TypeScript, if I do something like: toPolyfillReadable(stream).pipeThrough it says: Property 'pipeThrough' does...
First of all thanks for this project, I'm using it over at https://github.com/zengm-games/facesjs If I upgrade to version 1.2.6, I noticed this error when running `tsc`: ``` src/faceToSvgString.ts:1:25 - error...
This fixes a couple issues that lead to subtle timing bugs in useThrottle. For an example, see [this codesandbox](https://codesandbox.io/p/sandbox/gracious-pike-vmzh2k?file=%2Fsrc%2FApp.js%3A11%2C69-12%2C39) and notice how throttledValue (current implementation) updates kind of choppily and...
The TypeScript types for just-clone say that the input must be an object, but if you look at the code that's not true, it works fine with a primitive as...