cleanup and docs
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m4s
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m4s
This commit is contained in:
16
src/common/player.ts
Normal file
16
src/common/player.ts
Normal file
@ -0,0 +1,16 @@
|
||||
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 true;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user