peter.sh
peter.sh copied to clipboard
BackgroundFetchSettledEvent JS error
In the new version of the spec, getting the fetches from the event returns a Promise.
event.fetches.forEach(...)
should become something like
(await event.fetches.values()).forEach(...);