File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,9 @@ for (let i = 0; i < 256; ++i) {
13
13
export function unsafeStringify ( arr , offset = 0 ) {
14
14
// Note: Be careful editing this code! It's been tuned for performance
15
15
// and works in ways you may not expect. See https://github.com/uuidjs/uuid/pull/434
16
+ //
17
+ // Note to future-self: No, you can't remove the `toLowerCase()` call.
18
+ // REF: https://github.com/uuidjs/uuid/pull/677#issuecomment-1757351351
16
19
return (
17
20
byteToHex [ arr [ offset + 0 ] ] +
18
21
byteToHex [ arr [ offset + 1 ] ] +
@@ -34,7 +37,7 @@ export function unsafeStringify(arr, offset = 0) {
34
37
byteToHex [ arr [ offset + 13 ] ] +
35
38
byteToHex [ arr [ offset + 14 ] ] +
36
39
byteToHex [ arr [ offset + 15 ] ]
37
- ) ;
40
+ ) . toLowerCase ( ) ;
38
41
}
39
42
40
43
function stringify ( arr , offset = 0 ) {
You can’t perform that action at this time.
0 commit comments