Skip to content

Commit

Permalink
perf: remove superfluous call to toLowerCase (#677)
Browse files Browse the repository at this point in the history
  • Loading branch information
LinusU committed Jan 13, 2023
1 parent 62ef29e commit e53793f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stringify.js
Expand Up @@ -34,7 +34,7 @@ export function unsafeStringify(arr, offset = 0) {
byteToHex[arr[offset + 13]] +
byteToHex[arr[offset + 14]] +
byteToHex[arr[offset + 15]]
).toLowerCase();
);
}

function stringify(arr, offset = 0) {
Expand Down

0 comments on commit e53793f

Please sign in to comment.