From 39830fc7cef3636941129d719fb5f08e99e4e997 Mon Sep 17 00:00:00 2001 From: liam-tait Date: Wed, 4 Sep 2024 00:25:07 +1200 Subject: [PATCH] fmt --- uuid/v7.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uuid/v7.ts b/uuid/v7.ts index ef329fb96c9a..499c5bef82a7 100644 --- a/uuid/v7.ts +++ b/uuid/v7.ts @@ -125,7 +125,7 @@ export function generate(options: GenerateOptions = {}): string { export function extractTimestamp(uuid: string): number { if (!validate(uuid)) { throw new TypeError( - `Cannot extract timestamp because the UUID is not a valid UUIDv7: uuid is "${uuid}"` + `Cannot extract timestamp because the UUID is not a valid UUIDv7: uuid is "${uuid}"`, ); } const timestampHex = uuid.slice(0, 8) + uuid.slice(9, 13);