Closed r4vn closed 6 months ago
The currently exported fetch is bound to the exported object and not window in the browser. This creates Invalid invocation errors for dependents.
fetch
window
Invalid invocation
To avoid this, the browser export now uses festival.fetch, which ensures a proper binding.
festival.fetch
utACK
Summary
The currently exported
fetch
is bound to the exported object and notwindow
in the browser. This createsInvalid invocation
errors for dependents.To avoid this, the browser export now uses
festival.fetch
, which ensures a proper binding.