mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-22 16:18:08 +02:00
Merge pull request #15028 from Snuffleupagus/update-compat
[api-minor] Update the minimum supported browsers/environments
This commit is contained in:
commit
720f77c7cd
2 changed files with 3 additions and 18 deletions
|
@ -55,21 +55,6 @@ if (
|
|||
);
|
||||
})();
|
||||
|
||||
// Provides support for *recent* additions to the Promise specification,
|
||||
// however basic Promise support is assumed to be available natively.
|
||||
// Support: Firefox<71, Chrome<76, Safari<13, Node.js<12.9.0
|
||||
(function checkPromise() {
|
||||
if (typeof PDFJSDev !== "undefined" && PDFJSDev.test("IMAGE_DECODERS")) {
|
||||
// The current image decoders are synchronous, hence `Promise` shouldn't
|
||||
// need to be polyfilled for the IMAGE_DECODERS build target.
|
||||
return;
|
||||
}
|
||||
if (globalThis.Promise.allSettled) {
|
||||
return;
|
||||
}
|
||||
globalThis.Promise = require("core-js/es/promise/index.js");
|
||||
})();
|
||||
|
||||
// Support: Node.js
|
||||
(function checkReadableStream() {
|
||||
if (globalThis.ReadableStream || !isNodeJS) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue