mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2025-04-04 17:07:27 +00:00
16 lines
458 B
TypeScript
16 lines
458 B
TypeScript
import { t } from 'svelte-intl-precompile'
|
|
import { get } from 'svelte/store'
|
|
|
|
import { notify } from './toast'
|
|
|
|
export function copy(value: string) {
|
|
window.navigator.clipboard.writeText(value)
|
|
const msg = get(t)('common.copied_to_clipboard')
|
|
notify.success(msg)
|
|
}
|
|
|
|
export function getCSSVariable(variable: string): string {
|
|
if (typeof window === 'undefined') return ''
|
|
return window.getComputedStyle(window.document.body).getPropertyValue(variable)
|
|
}
|