Merge pull request #13021 from Snuffleupagus/createObjectURL-rm-shadow
Remove the, strictly unnecessary, closure and variable shadowing from `createObjectURL`
This commit is contained in:
commit
061637d3f4
@ -940,18 +940,14 @@ function createPromiseCapability() {
|
|||||||
return capability;
|
return capability;
|
||||||
}
|
}
|
||||||
|
|
||||||
const createObjectURL = (function createObjectURLClosure() {
|
function createObjectURL(data, contentType = "", forceDataSchema = false) {
|
||||||
|
if (URL.createObjectURL && !forceDataSchema) {
|
||||||
|
return URL.createObjectURL(new Blob([data], { type: contentType }));
|
||||||
|
}
|
||||||
// Blob/createObjectURL is not available, falling back to data schema.
|
// Blob/createObjectURL is not available, falling back to data schema.
|
||||||
const digits =
|
const digits =
|
||||||
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
|
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
|
||||||
|
|
||||||
// eslint-disable-next-line no-shadow
|
|
||||||
return function createObjectURL(data, contentType, forceDataSchema = false) {
|
|
||||||
if (!forceDataSchema && URL.createObjectURL) {
|
|
||||||
const blob = new Blob([data], { type: contentType });
|
|
||||||
return URL.createObjectURL(blob);
|
|
||||||
}
|
|
||||||
|
|
||||||
let buffer = `data:${contentType};base64,`;
|
let buffer = `data:${contentType};base64,`;
|
||||||
for (let i = 0, ii = data.length; i < ii; i += 3) {
|
for (let i = 0, ii = data.length; i < ii; i += 3) {
|
||||||
const b1 = data[i] & 0xff;
|
const b1 = data[i] & 0xff;
|
||||||
@ -964,8 +960,7 @@ const createObjectURL = (function createObjectURLClosure() {
|
|||||||
buffer += digits[d1] + digits[d2] + digits[d3] + digits[d4];
|
buffer += digits[d1] + digits[d2] + digits[d3] + digits[d4];
|
||||||
}
|
}
|
||||||
return buffer;
|
return buffer;
|
||||||
};
|
}
|
||||||
})();
|
|
||||||
|
|
||||||
export {
|
export {
|
||||||
AbortException,
|
AbortException,
|
||||||
|
@ -701,7 +701,11 @@ class PDFPageView {
|
|||||||
const actualSizeViewport = this.viewport.clone({ scale: CSS_UNITS });
|
const actualSizeViewport = this.viewport.clone({ scale: CSS_UNITS });
|
||||||
const promise = pdfPage.getOperatorList().then(opList => {
|
const promise = pdfPage.getOperatorList().then(opList => {
|
||||||
ensureNotCancelled();
|
ensureNotCancelled();
|
||||||
const svgGfx = new SVGGraphics(pdfPage.commonObjs, pdfPage.objs);
|
const svgGfx = new SVGGraphics(
|
||||||
|
pdfPage.commonObjs,
|
||||||
|
pdfPage.objs,
|
||||||
|
/* forceDataSchema = */ viewerCompatibilityParams.disableCreateObjectURL
|
||||||
|
);
|
||||||
return svgGfx.getSVG(opList, actualSizeViewport).then(svg => {
|
return svgGfx.getSVG(opList, actualSizeViewport).then(svg => {
|
||||||
ensureNotCancelled();
|
ensureNotCancelled();
|
||||||
this.svg = svg;
|
this.svg = svg;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user