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();
}
};