Spaces:
Running
Running
File size: 282 Bytes
7f5876d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
"use server";
export const check_user = async (username: string) => {
const userResponse = await fetch(
`https://huggingface.co/api/users/${username}/overview`
);
const user = await userResponse.json();
if (!user || user.error) {
return false;
}
return true;
} |