scoresaber-reloadedv3/src/common/browser-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
175 B
TypeScript

/**
* Copies the given string to the clipboard
*
* @param str the string to copy
*/
export function copyToClipboard(str: string) {
navigator.clipboard.writeText(str);
}