Urara-Blog/node_modules/.pnpm-store/v3/files/07/5be81f5bc094f8d2ac256f7c5b0d7e07ba3eb7210295e9827a395d86dbc1adaee9861ac2c3dc723581e60a77c25c785c6a866415001aed010e00c04897d7ef
2022-08-14 01:14:53 +08:00

27 lines
852 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 {canConstructReadableStream} from 'workbox-core/_private/canConstructReadableStream.js';
import './_version.js';
/**
* This is a utility method that determines whether the current browser supports
* the features required to create streamed responses. Currently, it checks if
* [`ReadableStream`](https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream/ReadableStream)
* can be created.
*
* @return {boolean} `true`, if the current browser meets the requirements for
* streaming responses, and `false` otherwise.
*
* @memberof workbox-streams
*/
function isSupported(): boolean {
return canConstructReadableStream();
}
export {isSupported};