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
*/
consumeWhile(val) {
while (this.position < this.length){
if (this.bytes[this.position] !== val){
while (this.position < this.length) {
if (this.bytes[this.position] !== val) {
break;
}
this.position++;