Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions build/pdf.worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -54385,6 +54385,10 @@ var BoundingBoxStack = function BoundingBoxStack() {
end: function BoundingBoxStack_end() {
let last = this.stack.pop();

if (!last) {
return null;
}

if (last.mcid !== null) {
return last;
} else {
Expand Down
2 changes: 1 addition & 1 deletion build/pdf.worker.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/pdf.worker.min.js

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions legacy/build/pdf.worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -65020,6 +65020,10 @@ var BoundingBoxStack = function BoundingBoxStack() {
end: function BoundingBoxStack_end() {
var last = this.stack.pop();

if (!last) {
return null;
}

if (last.mcid !== null) {
return last;
} else {
Expand Down
2 changes: 1 addition & 1 deletion legacy/build/pdf.worker.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion legacy/build/pdf.worker.min.js

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions lib/core/bounding_boxes.js
Original file line number Diff line number Diff line change
Expand Up @@ -649,6 +649,10 @@ var BoundingBoxStack = function BoundingBoxStack() {
end: function BoundingBoxStack_end() {
let last = this.stack.pop();

if (!last) {
return null;
}

if (last.mcid !== null) {
return last;
} else {
Expand Down
141 changes: 0 additions & 141 deletions lib/core/murmurhash3.js

This file was deleted.

Loading