Last active
December 8, 2019 14:54
-
-
Save kmaraz/f833f9960996afd20f002e7382853ccc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
async clearCache() { | |
await caches.keys().then((cacheNames) => { | |
cacheNames.forEach((cacheName) => { | |
caches.delete(cacheName); | |
}); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment