You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the fetch module in internal uses cross-fetch, which shims the fetch method on node environments which don't yet support it
the problem occurs when running build-less es6 modules in browsers (during tests) when cross-fetch resolves itself to the /dist/browser-ponyfill.js which doesn't export the window's Request class:
the fetch module in
internal
uses cross-fetch, which shims thefetch
method on node environments which don't yet support itthe problem occurs when running build-less es6 modules in browsers (during tests) when cross-fetch resolves itself to the
/dist/browser-ponyfill.js
which doesn't export the window's Request class:https://github.com/Swivel-Finance/swivel-js/blob/v3/src/internal/fetch/index.ts#L55
The text was updated successfully, but these errors were encountered: