mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 15:06:02 +01:00
10 lines
405 B
TypeScript
10 lines
405 B
TypeScript
// yoinked from https://github.com/project-error/npwd/blob/d8dc5b7f47faf5fc581ffee30f31ff61d184cfe7/phone/src/os/phone/hooks/useClipboard.ts#L1
|
|
export const setClipboard = (value: string) => {
|
|
const clipElem = document.createElement('input');
|
|
clipElem.value = value;
|
|
document.body.appendChild(clipElem);
|
|
clipElem.select();
|
|
document.execCommand('copy');
|
|
document.body.removeChild(clipElem);
|
|
};
|