Skip to content

Commit

Permalink
style: fix indentation in generateFakeImage.js for improved readability
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-logan committed Feb 5, 2025
1 parent 4798d07 commit 3fd2708
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/generateFakeImage.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ fs.writeFileSync("fake87a.gif", fakeGIF);
// Assinatura GIF89a: [0x47, 0x49, 0x46, 0x38, 0x39, 0x61]
const gif89aSignature = [0x47, 0x49, 0x46, 0x38, 0x39, 0x61];
const fakeGIF89a = new Uint8Array([
...gif89aSignature,
...new Array(100).fill(0),
...gif89aSignature,
...new Array(100).fill(0),
]); // 100 bytes extras vazios
fs.writeFileSync("fake89a.gif", fakeGIF89a);

Expand Down

0 comments on commit 3fd2708

Please sign in to comment.