scoresaber-reloadedv3/src/common/website-utils.ts
Liam b5df147728
Some checks failed
Deploy SSR / deploy (push) Has been cancelled
add bsr, map and yt buttons to scores
2024-09-11 23:10:16 +01:00

9 lines
180 B
TypeScript

/**
* Sets the player id cookie
*
* @param playerId the player id to set
*/
export function setPlayerIdCookie(playerId: string) {
document.cookie = `playerId=${playerId}`;
}