1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-19 22:58:07 +02:00

Merge pull request #296 from sbarman/lexerfix2

added skip to lexer
This commit is contained in:
Andreas Gal 2011-08-03 15:05:43 -07:00
commit 017279b6ec

3
pdf.js
View file

@ -2412,6 +2412,9 @@ var Lexer = (function() {
return;
}
}
},
skip: function() {
this.stream.skip();
}
};