Prettier format pending files

This commit is contained in:
Builder.io 2025-11-15 02:26:54 +00:00
parent 2fa397cca4
commit ec104c44cb

View file

@ -200,7 +200,7 @@
array[6] = (array[6] & 0x0f) | 0x40;
array[8] = (array[8] & 0x3f) | 0x80;
const hex = Array.from(array).map((b) =>
b.toString(16).padStart(2, "0")
b.toString(16).padStart(2, "0"),
);
return [
hex.slice(0, 4).join(""),