You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
991 B
40 lines
991 B
/* |
|
Copyright 2018 Google LLC |
|
|
|
Use of this source code is governed by an MIT-style |
|
license that can be found in the LICENSE file or at |
|
https://opensource.org/licenses/MIT. |
|
*/ |
|
|
|
import {registerQuotaErrorCallback} from './registerQuotaErrorCallback.mjs'; |
|
import * as _private from './_private.mjs'; |
|
import {clientsClaim} from './clientsClaim.mjs'; |
|
import {cacheNames} from './cacheNames.mjs'; |
|
import {setCacheNameDetails} from './setCacheNameDetails.mjs'; |
|
import {skipWaiting} from './skipWaiting.mjs'; |
|
import './_version.mjs'; |
|
|
|
|
|
// Give our version strings something to hang off of. |
|
try { |
|
self.workbox.v = self.workbox.v || {}; |
|
} catch (errer) { |
|
// NOOP |
|
} |
|
|
|
/** |
|
* All of the Workbox service worker libraries use workbox-core for shared |
|
* code as well as setting default values that need to be shared (like cache |
|
* names). |
|
* |
|
* @namespace workbox.core |
|
*/ |
|
|
|
export { |
|
_private, |
|
clientsClaim, |
|
cacheNames, |
|
registerQuotaErrorCallback, |
|
setCacheNameDetails, |
|
skipWaiting, |
|
};
|
|
|