feat: 仅匹配 UUIDv4

This commit is contained in:
xream
2025-02-15 19:58:09 +08:00
parent 4ef4431c2c
commit 6d3d6fa1b3
2 changed files with 2 additions and 2 deletions

View File

@@ -120,7 +120,7 @@ function numberToString(value) {
function isValidUUID(uuid) {
return (
typeof uuid === 'string' &&
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/.test(
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$/.test(
uuid,
)
);