Mark Fulton
Mark Fulton
https://github.com/authts/react-oidc-context/blob/8f5d9b47c12831d257eda29c14cab7f1d0134e31/src/AuthProvider.tsx#L42 see [no-invalid-void-type | typescript-eslint](https://typescript-eslint.io/rules/no-invalid-void-type/) I suggest using `user: User | undefined` or `user?: User` instead of `user: User | void`.
sometimes Twilio calls fail for intermittent network/server errors (e.g. `ECONNRESET`); can the [Auto-Retry with Exponential Backoff](https://github.com/twilio/twilio-node?tab=readme-ov-file#enable-auto-retry-with-exponential-backoff) be updated or a similar option added to also retry under these conditions? https://github.com/twilio/twilio-node/blob/55db7c2c5f2b56110333a03c4f4c6f02432489bd/src/base/RequestClient.ts#L37-L66
What would it take to run Warcraft II in the browser using WebAssembly?
Version: ```txt deno 1.45.1 (release, aarch64-apple-darwin) v8 12.7.224.12 typescript 5.5.2 ``` README.md: ````md # demo ## Example ```ts console.log("Hello world"); ``` ```` Demo: ```console % deno test --doc --watch |...
I just discovered this library and it looks great. What do you think of supporting a chainable API too? Pure functions are nice but when a developer needs to use...
Is Markdown linting out of scope? I think it would be nice to have `deno lint` address all linting concerns for things that Deno supports/consumes/etc. `deno fmt` supports Markdown so...
AFAIK `dnt` can currently change a lock file's contents during transform/testing. I'd like an option (perhaps enabled by default) to disallow this so that my build process does not silently...
### What problem are you trying to solve? I want "protected enclaves" where the JS code accessed via HTTP requests are only accessible within my company's VPC so that malicious...
Formatting works fine without the `\` and newline but not with them. ```html Demo const supportedFormats = await globalThis.BarcodeDetector?.getSupportedFormats() ?? []; if (!supportedFormats.includes("qr_code")) { document.body.innerHTML += 'QR Code detection is...
In addition to HTML, CSS, and JS/JSX/TS/TSX, I would like to be able to format SVG files (or really any XML file, including XHTML). Refs: https://github.com/denoland/deno/issues/20205