Files
Frontend/src/common/player.ts
Liam 21e1a0e596
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m4s
fix embed color
2024-04-18 08:54:13 +01:00

17 lines
317 B
TypeScript

import { getPlayer } from "mcutils-library";
/**
* Checks if the player is valid.
*
* @param id the player's id
* @returns true if valid, false otherwise
*/
export async function isValidPlayer(id: string): Promise<boolean> {
try {
await getPlayer(id);
return true;
} catch {
return false;
}
}