Small correction to continueWhile

This commit is contained in:
n1073645 2019-11-13 09:59:55 +00:00
parent dfd4cca43f
commit 3921b4f445

View File

@ -213,8 +213,7 @@ export default class Stream {
* @param {Number} val
*/
consumeWhile(val) {
while ((this.position < this.length) && (this.bytes[(this.position++)] === val))
this.position--;
while ((++this.position < this.length) && (this.bytes[(this.position)] === val));
}
/**