From 9fd5c4847fb0d7f321ccac5fd88134cf326572a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Linus=20Unneb=C3=A4ck?= Date: Wed, 11 Jan 2023 18:31:54 +0100 Subject: [PATCH] perf: remove superfluous call to toLowerCase --- src/stringify.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stringify.js b/src/stringify.js index 3e66728d..3d15e61a 100644 --- a/src/stringify.js +++ b/src/stringify.js @@ -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) {