1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-25 09:38:06 +02:00

Merge pull request #6915 from yurydelendik/lookuptables

Refactor lookup hash tables/objects
This commit is contained in:
Yury Delendik 2016-01-28 15:01:06 -06:00
commit 825a2225ab
23 changed files with 9970 additions and 9667 deletions

View file

@ -70,7 +70,7 @@ var Parser = (function ParserClosure() {
this.lexer = lexer;
this.allowStreams = allowStreams;
this.xref = xref;
this.imageCache = {};
this.imageCache = Object.create(null);
this.refill();
}