All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m4s
17 lines
317 B
TypeScript
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;
|
|
}
|
|
}
|