Linting adjustments

This commit is contained in:
n1073645 2019-11-13 17:15:54 +00:00 committed by d98762625
parent 544c85cce4
commit de21b5c73a

View file

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