Skip to content

Instantly share code, notes, and snippets.

@alexpermiakov
Created December 23, 2019 13:07
Show Gist options
  • Save alexpermiakov/fbe2757b9cd852fb6338b2058dfbfaa3 to your computer and use it in GitHub Desktop.
Save alexpermiakov/fbe2757b9cd852fb6338b2058dfbfaa3 to your computer and use it in GitHub Desktop.
self.addEventListener('activate', function (event) {
event.waitUntil(
caches.keys().then(function (cacheNames) {
cacheNames.map(function (cacheName) {
if (cacheName.indexOf(cacheVersion) < 0) {
return caches.delete(cacheName);
}
});
});
})
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment