UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

17 lines (14 loc) 533 B
async function clipboardCopy(text: string): Promise<void> { try { await navigator.clipboard.writeText(text); } catch (err) { if (process.env.NODE_ENV !== "production") { console.error("Unable to copy using Clipboard API", err); } // Fallback for browsers that do not support the Clipboard API. const copyKey = /mac os x/i.test(navigator.userAgent) ? "⌘" : "Ctrl"; const message = `Kopier til utklippstavle: ${copyKey}+C, Enter`; window.prompt(message, text); } } export { clipboardCopy };