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

added skip to lexer

This commit is contained in:
sbarman 2011-08-03 14:14:42 -07:00
parent 42eda3e67d
commit ececccfa80

3
pdf.js
View file

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