Skip to content

Commit

Permalink
chore: fix syntax error for ie11
Browse files Browse the repository at this point in the history
  • Loading branch information
Conrad Chan committed Jul 29, 2021
1 parent b575651 commit 713e33e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/third-party/doc/2.76.0/pdf.worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -35725,14 +35725,14 @@ var Font = function FontClosure() {

exportData: function Font_exportData() {
var data = Object.create(null);
var property, value;
for (property of EXPORT_DATA_PROPERTIES) {
value = this[property];
var that = this, value;
EXPORT_DATA_PROPERTIES.forEach(function (property) {
value = that[property];
// Ignore properties that haven't been explicitly set.
if (value !== undefined) {
data[property] = value;
}
}
});

return data;
},
Expand Down
3 changes: 1 addition & 2 deletions src/third-party/doc/2.76.0/pdf.worker.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 713e33e

Please sign in to comment.