diff --git a/src/display/api.js b/src/display/api.js index 3b36f18e0..fba542a87 100644 --- a/src/display/api.js +++ b/src/display/api.js @@ -513,6 +513,12 @@ async function _fetchDocument(worker, source, pdfDataRangeTransport, docId) { } ); + // Release the TypedArray data, when it exists, since it's no longer needed + // on the main-thread *after* it's been sent to the worker-thread. + if (source.data) { + source.data = null; + } + if (worker.destroyed) { throw new Error("Worker was destroyed"); } @@ -953,8 +959,8 @@ class PDFDocumentProxy { } /** - * @returns {Promise} A promise that is resolved with a - * {TypedArray} that has the raw data from the PDF. + * @returns {Promise} A promise that is resolved with a + * {Uint8Array} that has the raw data from the PDF. */ getData() { return this._transport.getData();