Mark Fulton
Mark Fulton
### Clear and concise description of the problem A convenient helper for add random delays/sleeps/timeouts (e.g. to simulate non-deterministic network loads). ### Suggested solution ```ts await faker.helpers.timeout({ min: 400, max:...
Maybe it is already here under a different name but I want to assert that a value is a specific value (strict equals). e.g. ```ts // formula.type is "number" |...
Sometimes `once()` is very convenient but it can't be used when wanting to wait for the first event that meets some predicate (e.g. an event from a websocket with not...
### Is there an existing issue for this? - [x] I have searched the existing issues ### Package ecosystem pnpm ### Package manager version 9.15.14 ### Language version Node.js 22.13.0...
I'd like a way to compute the difference between a value in a column with the previous or next value over a partition. I believe several SQL solutions use `LEAD()`...
**Is your feature request related to a problem? Please describe.** `EventSource` works well for GET with no custom request headers but does not super other HTTP verbs, request bodies, or...
**Is your feature request related to a problem? Please describe.** I can check that something will throw but I don't see a straightforward way to check properties on the thrown...
I'd like to have more confidence in my web app logs successfully being sent to my server from web browser by them being sent via a [Worker](https://developer.mozilla.org/en-US/docs/Web/API/Worker) (or a [SharedWorker](https://developer.mozilla.org/en-US/docs/Web/API/SharedWorker)...
I propose support `AsyncDisposable` on `postgres.Sql` (https://github.com/tc39/proposal-explicit-resource-management) so that developers can opt-into ending the connection automatically at the end of the current scope. **before** ```ts import postgres from "postgres"; const...
I propose support `AsyncDisposable` on `Client` (https://github.com/tc39/proposal-explicit-resource-management) so that developers can opt-into ending the connection automatically at the end of the current scope. **before** ```ts import { Client } from...