mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-26 01:58:06 +02:00
min. perf. Dict
This commit is contained in:
parent
7fb940c4ba
commit
82b6b4ead8
1 changed files with 1 additions and 1 deletions
2
pdf.js
2
pdf.js
|
@ -1943,7 +1943,7 @@ var Dict = (function() {
|
||||||
|
|
||||||
forEach: function(callback) {
|
forEach: function(callback) {
|
||||||
for (var key in this.map) {
|
for (var key in this.map) {
|
||||||
callback.call(null, key, this.map[key]);
|
callback(key, this.map[key]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue