Skip to content

Instantly share code, notes, and snippets.

@kypflug

kypflug/sw-2.js Secret

Created December 15, 2017 01:55
Embed
What would you like to do?
Fetch event handler example
self.onfetch = function(event) {
event.respondWith(
fetch(event.request);
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment