2023-07-27 14:31:52 +09:00
|
|
|
/*
|
2024-02-13 15:59:27 +00:00
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 14:31:52 +09:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2017-02-25 16:30:18 +09:00
|
|
|
/**
|
|
|
|
* Clipboardに値をコピー(TODO: 文字列以外も対応)
|
|
|
|
*/
|
2024-07-17 21:52:05 +09:00
|
|
|
export function copyToClipboard(input: string | null) {
|
|
|
|
if (input) navigator.clipboard.writeText(input);
|
2017-02-25 16:30:18 +09:00
|
|
|
};
|