From c1878ca28b44e6e8935d163b341a6b1878f1605b Mon Sep 17 00:00:00 2001 From: n1073645 Date: Wed, 13 Nov 2019 17:15:54 +0000 Subject: [PATCH] Linting adjustments --- src/core/lib/Stream.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/lib/Stream.mjs b/src/core/lib/Stream.mjs index 451698b9..da299b65 100644 --- a/src/core/lib/Stream.mjs +++ b/src/core/lib/Stream.mjs @@ -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++;