Ben Allfree
Ben Allfree
Would something like this make sense? If so I can submit a PR. ```typescript export type DetailedDiffResult = { deleted: object; added: object; updated: object; }; export function detailedDiff( originalObj:...
I'm hitting a problem where `(string | undefined)[]` is incompatible with `JsonValue`. ```ts export type BrokenWrapper = {}; export type MyType = string[]; export type BrokenWrappedType = BrokenWrapper; ``` https://codesandbox.io/s/nice-water-lp2n5...
In looking at https://github.com/Tonejs/Tone.js/blob/dev/Tone/index.ts#L33, I see this line: ```ts export const Transport = getContext().transport; ``` If this executes before `Tone.start()`, it will produce the `The AudioContext was not allowed to...
I've created a promise-based wrapper at https://github.com/benallfree/georedis-promised.
window.DOMParser is preventing this from working in React Native. Any ideas? https://github.com/Luuka/GPXParser.js/blob/d9c41f727d222f74aa9f768be5168a10c346afd9/src/GPXParser.js#L24
Hello maintainers, this is in reference to https://github.com/simonhaenisch/prettier-plugin-organize-imports/issues/39 where we are trying to add Svelte support. A couple of us have tried unsuccessfully to understand how you do it here....
Hey there again, I'm working on a cooperative multitasking system meant to manage jobs and time-slice soas not to jank UI threads or server-side processes. I'm to the point of...
I noticed that v13 has only `.mjs` files and the `bundles` UMD output is gone. This is problematic because when I run with `ts-node`, I get: ``` Error [ERR_REQUIRE_ESM]: Must...
Just FYI, I think `+new Date()` would be more compatible.