Sven Sauleau
Sven Sauleau
@krystian3w if your website is using Cloudflare's cdn and you enabled the polyfill rewriting feature, it will automatically rewrite your scripts tag to point to Cloudflare's fork.
Fixed https://github.com/cdnjs/logs/commit/118a77882332e1857374878558cb54cc4e36e75d
@anyscalesam We at Cloudflare would also benefit from IPv6 support.
Just to be clear, you want to override some of Babel's helper functions like the spread syntax one? Or do you want to inject a function during your own transformation?...
> Right now, all of the recommended ways to load WebAssembly files use XHR That's wrong; `WebAssembly.instantiateStreaming` is the recommended way and use `window.fetch`. For Webpack and Rollup, the JavaScript...
Note that Promise and Fetch run on the main thread, whereas Wasm compilation (if asynchronous) can be done in background, only the instantiation is blocking. Also I'm wondering what happens...
> but any ongoing background compilation has a reference to the Module object and will keep it alive until the compilation is finished Is there any plan to stop the...
Yeah Promise is not available on IE11. We should probably use `babel-preset-env`, and more likely on the new website.
It should be just renaming to acorn-import-attributes, right?
Maybe that's a more common js API: ```js const m = WebAssembly.Memory({ ... }); m.addEventListener("change", fn); ``` `change`/`onchange` event. --- I think that It would be quite confusing for people...