Maneesh Tewani
Maneesh Tewani
I'd like to compile dlib for my android application with SSE4 or AVX enabled, but it doesn't seem like there's an option in the makefile to enable it.
Fixed issue where get() would return incorrect results if you had a filtered `get()` and an event listener `onValue()` on the same path, and get() would override the data received...
Fixed issue where transaction callbacks were given inaccurate data when concurrent writes occur.
Fix for related https://github.com/firebase/firebase-js-sdk/issues/6397
On RTDB, once the bundle is created, we check if `MozWebSocket` or `WebSocket` implementations are available. `index.node.ts` ends up overriding this with `faye-websocket`. In Deno, `index.node.ts` ends up getting imported,...
Restores original change that required the `key` parameter in the `forEach` callback. As this is a potentially breaking change for extensions, we will wait for a major release for this...
We have exponential backoff implemented, but not for `uploadChunk`. If `uploadChunk` fails, we check if we are in a recoverable state, and then request the status of the upload, and...
The example originally used `uid` documents to determine whether a user is online or not. This is not best practice because you may have an onDisconnect that sets the user...
## Purpose Allow Node 18 Blob's to be used in `fetch` ___ - [X] I added unit test(s) ___ - fix #1663
When calling `fetch` with a Node.JS 18 `Blob` object, the stream never receives new data due to the conflicting types of `Blob.stream()` (`ReadableStream`) and `node-fetch`'s expected `stream()` object (`stream.readable`)