diff --git a/biome.json b/biome.json index c6510d256b..07cf44ffde 100644 --- a/biome.json +++ b/biome.json @@ -37,8 +37,7 @@ "noVar": "off", "useNodejsImportProtocol": "off", "useSingleVarDeclarator": "off", - "useTemplate": "off", - "useWhile": "off" + "useTemplate": "off" }, "suspicious": { "noAssignInExpressions": "off", diff --git a/runtime/zstd.js b/runtime/zstd.js index 3ed8e13d4c..01da0cad12 100644 --- a/runtime/zstd.js +++ b/runtime/zstd.js @@ -392,7 +392,7 @@ var zstd_decompress = (function () { btr = hu.b, pos = (len << 3) - 8 + msb(lb) - btr, i = -1; - for (; pos > eb && i < ss; ) { + while (pos > eb && i < ss) { var cbt = pos >> 3; var val = (dat[cbt] | (dat[cbt + 1] << 8) | (dat[cbt + 2] << 16)) >> (pos & 7); @@ -667,7 +667,7 @@ var zstd_decompress = (function () { bufs = [], nb = +!buf, ol = 0; - for (; dat.length; ) { + while (dat.length) { var st = rzfh(dat, nb || buf); if (typeof st == "object") { if (nb) { @@ -680,7 +680,7 @@ var zstd_decompress = (function () { bufs.push(buf); st.e = 0; } - for (; !st.l; ) { + while (!st.l) { var blk = rzb(dat, st, buf); if (!blk) err(5); if (buf) st.e = st.y;