Readme

Check that a string match your profile email

1
2
3
4
5
6
7
8
import { api } from "https://esm.town/v/pomdtr/api";
export async function verifyUserEmail(email: string) {
const me = await api<{ email: string }>("/v1/me", {
authenticated: true,
});
return email == me.email;
}
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
August 2, 2024