Linting adjustments

This commit is contained in:
n1073645 2019-11-13 17:15:54 +00:00
parent e9b7a43b9a
commit c1878ca28b

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++;