Skip to content

Commit e53793f

Browse files
authored
perf: remove superfluous call to toLowerCase (#677)
1 parent 62ef29e commit e53793f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/stringify.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export function unsafeStringify(arr, offset = 0) {
3434
byteToHex[arr[offset + 13]] +
3535
byteToHex[arr[offset + 14]] +
3636
byteToHex[arr[offset + 15]]
37-
).toLowerCase();
37+
);
3838
}
3939

4040
function stringify(arr, offset = 0) {

0 commit comments

Comments
 (0)