Skip to content

Commit 960d426

Browse files
committed
deno fmt
1 parent a02ffad commit 960d426

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

tasks/bundle-wasm.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ function encodeZ85(data: Uint8Array): string {
1212
}
1313
let out: string[] = [];
1414
for (let i = 0; i < src.length; i += 4) {
15-
let v =
16-
src[i] * 16777216 +
15+
let v = src[i] * 16777216 +
1716
src[i + 1] * 65536 +
1817
src[i + 2] * 256 +
1918
src[i + 3];

0 commit comments

Comments
 (0)