Skip to content

Instantly share code, notes, and snippets.

@colde
Created March 7, 2018 11:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save colde/7091a3a87ce4facbc41e051abd8f62c5 to your computer and use it in GitHub Desktop.
Save colde/7091a3a87ce4facbc41e051abd8f62c5 to your computer and use it in GitHub Desktop.
Empty service worker caches
caches.keys().then(function(names) {
for (let name of names)
caches.delete(name);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment