Aidan Sunbury
Aidan Sunbury
Explore posts from servers
Aarktype
Created by Aidan Sunbury on 3/13/2025 in #questions
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?
3 replies
TTCTheo's Typesafe Cult
Created by Aidan Sunbury on 12/11/2023 in #questions
Has anyone created or would anyone be interested in a vs code extension pack for the t3 stack?
What extensions would it make sense to add? Would there be any way to configure it depending on what pieces of the t3 stack someone opted into for a given project?
2 replies