Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmillr committed Jan 11, 2025
1 parent 0038d85 commit c7497e9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ export const TYPE_TEST = {
};

export const times = (byte, n) => new Uint8Array(n).fill(byte);
export const pattern = (toByte, len) => Uint8Array.from({ length: len }, (i, j) => j % (toByte + 1));
export const pattern = (toByte, len) =>
Uint8Array.from({ length: len }, (i, j) => j % (toByte + 1));

export const getTypeTests = () => [
[0, '0'],
Expand Down

0 comments on commit c7497e9

Please sign in to comment.