*Please note:* The dates below are still a little ways off, however that obviously won't affect the existing PDF.js releases. Hence I think that we can make these changes now, since by the time of the *next* official PDF.js release they'll likely match up pretty well.[1] While we "support" some (by now) fairly old browsers, that essentially means that the library (and viewer) will load and that the basic functionality will work as intended.[2] However, in older browsers, some functionality may not be available and generally we'll ask users to update to a modern browser when bugs (specific to old browsers) are reported.[3] Since we've previously settled on only supporting browsers/environments that are approximately *three years old*, this patch updates the minimum supported browsers/environments as follows: - Chrome 76, which was released on 2019-07-30; see https://en.wikipedia.org/wiki/Google_Chrome_version_history - Firefox ESR (as before); see https://wiki.mozilla.org/Release_Management/Calendar - Safari 13, which was released on 2019-09-19; see https://en.wikipedia.org/wiki/Safari_version_history#Safari_13 - Node.js 14, which was release on 2020-04-21 (all older versions have reached EOL); see https://en.wikipedia.org/wiki/Node.js#Releases --- [1] Given that the releases usually happen every two to three months. [2] Assuming that a `legacy/`-build is being used, of course. [3] In general it's never a good idea to use old/outdated browsers, since those may contain *known* security vulnerabilities.
97 lines
2.8 KiB
JavaScript
97 lines
2.8 KiB
JavaScript
/* Copyright 2017 Mozilla Foundation
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
/* globals __non_webpack_require__ */
|
|
|
|
import { isNodeJS } from "./is_node.js";
|
|
|
|
// Skip compatibility checks for modern builds and if we already ran the module.
|
|
if (
|
|
(typeof PDFJSDev === "undefined" || !PDFJSDev.test("SKIP_BABEL")) &&
|
|
!globalThis._pdfjsCompatibilityChecked
|
|
) {
|
|
globalThis._pdfjsCompatibilityChecked = true;
|
|
|
|
// Support: Node.js
|
|
(function checkNodeBtoa() {
|
|
if (globalThis.btoa || !isNodeJS) {
|
|
return;
|
|
}
|
|
globalThis.btoa = function (chars) {
|
|
// eslint-disable-next-line no-undef
|
|
return Buffer.from(chars, "binary").toString("base64");
|
|
};
|
|
})();
|
|
|
|
// Support: Node.js
|
|
(function checkNodeAtob() {
|
|
if (globalThis.atob || !isNodeJS) {
|
|
return;
|
|
}
|
|
globalThis.atob = function (input) {
|
|
// eslint-disable-next-line no-undef
|
|
return Buffer.from(input, "base64").toString("binary");
|
|
};
|
|
})();
|
|
|
|
// Support: Node.js
|
|
(function checkDOMMatrix() {
|
|
if (globalThis.DOMMatrix || !isNodeJS) {
|
|
return;
|
|
}
|
|
globalThis.DOMMatrix = __non_webpack_require__(
|
|
"dommatrix/dist/dommatrix.js"
|
|
);
|
|
})();
|
|
|
|
// Support: Node.js
|
|
(function checkReadableStream() {
|
|
if (globalThis.ReadableStream || !isNodeJS) {
|
|
return;
|
|
}
|
|
globalThis.ReadableStream = __non_webpack_require__(
|
|
"web-streams-polyfill/dist/ponyfill.js"
|
|
).ReadableStream;
|
|
})();
|
|
|
|
// Support: Firefox<90, Chrome<92, Safari<15.4, Node.js<16.6.0
|
|
(function checkArrayAt() {
|
|
if (Array.prototype.at) {
|
|
return;
|
|
}
|
|
require("core-js/es/array/at.js");
|
|
})();
|
|
|
|
// Support: Firefox<90, Chrome<92, Safari<15.4, Node.js<16.6.0
|
|
(function checkTypedArrayAt() {
|
|
if (Uint8Array.prototype.at) {
|
|
return;
|
|
}
|
|
require("core-js/es/typed-array/at.js");
|
|
})();
|
|
|
|
// Support: Firefox<94, Chrome<98, Safari<15.4, Node.js<17.0.0
|
|
(function checkStructuredClone() {
|
|
if (typeof PDFJSDev !== "undefined" && PDFJSDev.test("IMAGE_DECODERS")) {
|
|
// The current image decoders are synchronous, hence `structuredClone`
|
|
// shouldn't need to be polyfilled for the IMAGE_DECODERS build target.
|
|
return;
|
|
}
|
|
if (globalThis.structuredClone) {
|
|
return;
|
|
}
|
|
require("core-js/web/structured-clone.js");
|
|
})();
|
|
}
|