Conan
Conan
Just wondering if it wouldn't guide our intuition a little better if we could gives names to placeholders in the same manner as arrow-function arguments? ```js envars x |> Object.keys(x)...
Not sure how far this goes against your ideal of simplicity, but I wonder if you'd thought about variable arity for `emit`? ```ts emit(type: EventType, ...evt: T[]) { ((all.get(type) ||...
I have the following module and methods signature: ```js function module() { function method() { } function Method() { } return { method, Method } } ``` How would I...
Hope I've got the [right repo](https://github.com/aleclarson/vite-tsconfig-paths/issues/56) to report this, but I'm seeing the following issue: ```ts // lib.ts export const nothing = null; // app.ts :: works import { nothing...
No idea when this was introduced or how to fix. Notes for future self: Steps to reproduce: ```sh git checkout issues/3 pnpm install --frozen-lockfile pnpm run build:docs ``` Output: ```...
## Problem We wish to intercept and modify PlayWright HAR requests and responses. There does not appear to be a way of doing this directly on `routeFromHAR`, so the repo...
When it comes to using the Hooks, the structure of this repo seems no longer [Jest](https://jestjs.io/) friendly. The problem *may* be to do with Jest in-development [ESM support](https://jestjs.io/blog/2020/05/05/jest-26#native-esm-support), but I...
I made an [eslint plugin](https://www.npmjs.com/package/eslint-plugin-big-number-rules) some time ago that's reached v2 and I thought it was now useful enough to share more broadly. Essentially it offers replacements like: | from...