返回 presentation-ai
utils.ts
根目录 / src / server / share / utils.ts
1 export function normalizeShareEmail(email: string | null | undefined) {
2 return email?.trim().toLowerCase() ?? null;
3 }
4
4 lines TYPESCRIPT