Guy Bedford
Guy Bedford
This forwards global `error` events to the `process` `uncaughtException` event handler. It's still not clear if this is the right behaviour, since it's the first time considering the interaction of...
Posting as a draft and for discussion, if it would be useful for third-party contributions to be able to have the internal build triggered by having the workflow run by...
Resolves https://github.com/guybedford/es-module-lexer/issues/188, as a follow-up to the various `of` keyword handling edge cases. Again, this is a very specific solution, would value a review on this to determine what edge...
The Wasm WPT tests were recently updated to reflect the latest functionality. We must update the WPT suite here and polyfill behaviours to match.
The syntehtic event handling in ES Module Shims kind of grew organically one test case at a time. Each one seemed sensible for users, but together we've ended up in...
I've been using a virtual filesystem in the new JSPM Sandbox with: ```js self.esmsInitOptions = { onpolyfill:() => {}, hotReload: true, source:(url, fetchOpts, parentUrl, defaultSourceHook) => { if (!url.startsWith('file:///virtual-pkg/')) return...
It's been great to see the updates here. While the instance phase imports per the wasm-bindgen style remain specified and supported, the ESM Integration now also supports source phase imports...
This was originally brought up by @dbaeumer - having to have a function call per directory entry to read through the directory entry stream might introduce unnecessary performance costs for...
It could be worth further clarifying the drop & abort behaviours at various stages of the lifecycle of a request and response concretely, since these are observable implementation details in...
As far as I can tell, `outgoing-body`'s stream can exist in two different states: 1. unattached to the http request, before the request is made - all writes buffer, and...