Skip to content

Commit 71a90b0

Browse files
committed
feat(vh): uuid util
1 parent e4622d5 commit 71a90b0

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

src/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@ import {
33
checkboxAsString,
44
intAsString,
55
numAsString,
6+
uuid,
67
} from './schemas'
78

89
export const vh = {
910
boolAsString,
1011
checkboxAsString,
1112
intAsString,
1213
numAsString,
14+
uuid,
1315
}
1416

1517
export {

src/schemas.ts

+11
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,14 @@ export const numAsString = v.pipe(
5656
v.decimal('Must be a number string'),
5757
v.transform(Number),
5858
)
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

Comments
 (0)