Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
DieterReinert authored Jan 11, 2025
1 parent 37d94b9 commit c6a4c20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ export function bufWriteHex(buf: Uint8Array, hex: string, offset = 0): void {
}
}

export function bufReadHex(buf: Uint8Array, start = 0, end?: Number): string {
export function bufReadHex(buf: Uint8Array, start = 0, end?: number): string {
if (end === undefined) end = buf.length;
let out = '';
for (let i = start; i < end; i++) {
Expand Down

0 comments on commit c6a4c20

Please sign in to comment.