scoresaber-reloadedv3/src/common/website-utils.ts

9 lines
180 B
TypeScript
Raw Normal View History

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