Jacob Smith

Results 172 comments of Jacob Smith

Heads up: the node loader API function signatures have changed, and the 2nd argument is an (optional) object (not parentURL). Supplying an argument of invalid type will trigger an exception....

https://nodejs.org/api/esm.html#hooks I'm not sure what version(s) of Node.js the change was backported to, but at the very least, my code from ~2 years ago and what you included in your...

@probablyup thanks. The reviver is working fine as a workaround (no need to add a whole library for something to small). Just seemed like a bug in this library since...

@evilebottnawi I'm a bit confused: the options file you linked contains no mention of `spdy` or `http2` (or `http/2`). I've played around with this all evening, and I cannot get...

Express have thrown in the towel on http2: They've essentially said they're married to an underlying dead lib, spdy, for http2 support, so Express is unfortunately dying a slow death.

This problem has existed for a year. I reported it to bitwarden support on 25 August 2021: > A few weeks ago, you updated the Chromium (desktop) extension and introduce...

@Hinton thanks for looking into this! That does indeed seem to be it 🤯 https://jsfiddle.net/JakobJingleheimer/yjseg219/ https://user-images.githubusercontent.com/3012099/190682561-f0839843-6b4d-46e1-8b3c-7408e14fbe0c.mp4 (the `é`s that get printed are the initial value of the field; the `e`s...

Strangely, I could not get this to work—and it seems unnecessarily difficult to work around. ```jsx class Shell extends BaseComponent { // … handleResourceInjected({ resourcesByType }) { // each's might...

As a workaround for globally registering `expect`: ```js // mocha.setup.mjs import { expect } from 'chai'; global.expect = expect; ``` ```sh mocha -r ./mocha.setup.mjs … ```