Password = Comfirm password validator

I may be stupid, but I am just learning arktype and was hoping to implement something like a zod refine.
const passwordForm = z
.object({
password: z.string(),
confirm: z.string(),
})
.refine((data) => data.password === data.confirm, {
message: "Passwords don't match",
path: ["confirm"], // path of error
});
const passwordForm = z
.object({
password: z.string(),
confirm: z.string(),
})
.refine((data) => data.password === data.confirm, {
message: "Passwords don't match",
path: ["confirm"], // path of error
});
Is this possible in arktype?
2 Replies
ssalbdivad
ssalbdivad4w ago
Very relevant example here: https://arktype.io/docs/expressions#narrow
ArkType Docs
Optimized runtime validation for TypeScript syntax
Aidan Sunbury
Aidan SunburyOP4w ago
Thanks so much!

Did you find this page helpful?