Skip to content

Commit 3fd2708

Browse files
committed
style: fix indentation in generateFakeImage.js for improved readability
1 parent 4798d07 commit 3fd2708

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/generateFakeImage.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ fs.writeFileSync("fake87a.gif", fakeGIF);
1313
// Assinatura GIF89a: [0x47, 0x49, 0x46, 0x38, 0x39, 0x61]
1414
const gif89aSignature = [0x47, 0x49, 0x46, 0x38, 0x39, 0x61];
1515
const fakeGIF89a = new Uint8Array([
16-
...gif89aSignature,
17-
...new Array(100).fill(0),
16+
...gif89aSignature,
17+
...new Array(100).fill(0),
1818
]); // 100 bytes extras vazios
1919
fs.writeFileSync("fake89a.gif", fakeGIF89a);
2020

0 commit comments

Comments
 (0)