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

9 lines
175 B
TypeScript
Raw Normal View History

2024-09-11 22:10:16 +00:00
/**
* Copies the given string to the clipboard
*
* @param str the string to copy
*/
export function copyToClipboard(str: string) {
navigator.clipboard.writeText(str);
}