sebws
sebws
hey Stevie, I'll have a look and try set up a PR. to your comment, ScaleWatcher.java came from contacting WeiHeng and asking for it 😄. also, it is not like...
Hey again, the [functionality required to make it work](https://github.com/WebBluetoothCG/web-bluetooth/blob/main/implementation-status.md#scanning-api) is currently only implemented in Chrome Android and Mac, so I'm feeling a little put off by the effort. When trying...
I wonder if you saw my (disappointing) update @Stevie-Ray
> Hi @sebws, I completely understand the disappointment. The [current browser support](https://caniuse.com/web-bluetooth) for the Bluetooth API is indeed limited, and unfortunately, Apple has cited privacy concerns as the reason for...
That’s sweet @Stevie-Ray I’ll give it a look. In terms of data speed this is the same issue I have in Swift. I think partly the device just doesn’t send...
not sure if this is best suited for a separate PR, but pnpm also supports this setting via `pnpm-workspace.yaml` using camelCase key `useNodeVersion` https://pnpm.io/settings#usenodeversion
https://github.com/mswjs/interceptors/blob/c338da8363660fbd08e794511e35678dae095670/src/interceptors/ClientRequest/agents.ts#L67-L82 Looks like what happens is that `this.customAgent` is there, but it isn't an instance of `https.Agent`, so `createConnection` is taken from `super.createConnection`. Then when we go to bind at...
I think I may have, but as far as I remember it might not have been so simple
I don't remember, is there a reason it's not as simple as doing the instanceof check in the .bind call as well? It seems at least like a starting point....
```typescript public createConnection(options: any, callback: any) { const createConnection = (this.customAgent instanceof https.Agent && this.customAgent.createConnection) || super.createConnection const socket = new MockHttpSocket({ connectionOptions: options, createConnection: createConnection.bind( (this.customAgent instanceof https.Agent &&...