https://github.com/angular/angular
Raw File
Tip revision: ebd94ef41b5fdd1acc89ae21d6476122aa10521e authored by Andrew Scott on 13 January 2021, 21:26:54 UTC
release: cut the v11.1.0-rc.0 release (#40420)
Tip revision: ebd94ef
ngsw-worker.js
/**
 * @license
 * Copyright Google LLC All Rights Reserved.
 *
 * Use of this source code is governed by an MIT-style license that can be
 * found in the LICENSE file at https://angular.io/license
 */

// Mock `ngsw-worker.js` used for testing the examples.
// Immediately takes over and unregisters itself.
self.addEventListener('install', evt => evt.waitUntil(self.skipWaiting()));
self.addEventListener(
    'activate',
    evt => evt.waitUntil(self.clients.claim().then(() => self.registration.unregister())));
back to top