We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
uuid
1 parent e4622d5 commit 71a90b0Copy full SHA for 71a90b0
src/index.ts
@@ -3,13 +3,15 @@ import {
3
checkboxAsString,
4
intAsString,
5
numAsString,
6
+ uuid,
7
} from './schemas'
8
9
export const vh = {
10
boolAsString,
11
12
13
14
15
}
16
17
export {
src/schemas.ts
@@ -56,3 +56,14 @@ export const numAsString = v.pipe(
56
v.decimal('Must be a number string'),
57
v.transform(Number),
58
)
59
+
60
+/**
61
+ * Valibot schema to parse strings that are valid UUID.
62
+ * @example
63
+ * ```ts
64
+ * v.parse(vh.uuid, '2') -> throws an error
65
+ */
66
+export const uuid = v.pipe(
67
+ v.string(),
68
+ v.uuid(),
69
+)
0 commit comments