Skip to content

Commit

Permalink
test: Lint rules
Browse files Browse the repository at this point in the history
  • Loading branch information
clockworkgr committed Jan 30, 2024
1 parent 5c696be commit 4680d7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export function toHexString(byteArray: ArrayLike<number>) {
return Array.prototype.map
.call(byteArray, function (byte) {
return ("0" + (byte & 0xff).toString(16)).slice(-2);
return ('0' + (byte & 0xff).toString(16)).slice(-2);
})
.join("");
}

0 comments on commit 4680d7b

Please sign in to comment.