Dmitriy Mozgovoy

Results 118 comments of Dmitriy Mozgovoy

Asynchronous generators have been used since `v1.7.0`, so version `v1.6.8` should work.

No. `false` and `null` are special values that are intended to mark the header as "ignored". They won't be stringified.

To be honest, I don't really like the idea of ​​copying the entire fetch adapter and making some minor edits, which violates the DRY principle and will complicate support since...

@gepbird No, although adding such an option is trivial. Are there any reasons why we need it? I can’t find the related github issue, but someone asked to limit the...

No, this class does not have that functionality as it does not store pending promises from called listeners to wait for the "drain" state. In simple cases, you can extend...

@jasonsaayman Isn't it important to have primary and secondary button styles here? The emphasis on the "Get Started" button looks quite logical.

> Browser > Chrome > > Browser Version > 139.0.7258.67 This issue appears to be specific to the fetch adapter in Node.js, but not in the browser environment.

Which adapter do you use fetch or xhr?

Has anyone tested the issue with the `fetch` adapter instead of the default `xhr`? In theory, it shouldn't have the same issue.

> the project was switched to "type": "module" and "./index.js" became an esm file instead of commonjs, however, the "main" entry in package.json still points to "index.js". Why do you...