Urara-Blog/node_modules/.pnpm-store/v3/files/e1/09a47dfa188f01b4392efca2ebd5c49d799c61703df758efbc6fde3dd9a2a2da462efcbb81d3798dab60453c93a070da7ef6a8f657273e3f82370621356e4e
2022-08-14 01:14:53 +08:00

18 lines
483 B
Text

/*
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 './_version.js';
/**
* @return {boolean} Whether or not the current browser supports enabling
* navigation preload.
*
* @memberof workbox-navigation-preload
*/
function isSupported() {
return Boolean(self.registration && self.registration.navigationPreload);
}
export { isSupported };