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
{{ message }}
This repository was archived by the owner on Jul 13, 2020. It is now read-only.
This commit adds a fetchTextFromURL strategy using the new fetch API
required for service workers. #374
It can be used in a service worker like this:
```
importScripts('babel-browser.js')
importScripts('es6-module-loader-dev.js')
self.addEventListener('install', function(event) {
event.waitUntil(System.import('sw.jsx').then(function(sw) {
return sw.install(event);
}));
});
// [..]
```
0 commit comments