Skip to content

Instantly share code, notes, and snippets.

@itslukej
Created December 20, 2020 22:31
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 itslukej/40a2e1947d20c37439cc69aac84f27f5 to your computer and use it in GitHub Desktop.
Save itslukej/40a2e1947d20c37439cc69aac84f27f5 to your computer and use it in GitHub Desktop.
navigator.serviceWorker && navigator.serviceWorker.getRegistrations().then(rs => {
rs.forEach(r => {
if (r.active && r.active.scriptURL.includes('arc-sw.js')) {
r.unregister()
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment