From e53793f5be93413cad68b05b3a339ca23e993342 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Linus=20Unneb=C3=A4ck?= Date: Fri, 13 Jan 2023 01:39:12 +0100 Subject: [PATCH] perf: remove superfluous call to toLowerCase (#677) --- 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) {