Skip to content

Instantly share code, notes, and snippets.

@wesleybliss
Created December 17, 2020 15:10
Show Gist options
  • Save wesleybliss/8cf5400db8626297583da230e194fae5 to your computer and use it in GitHub Desktop.
Save wesleybliss/8cf5400db8626297583da230e194fae5 to your computer and use it in GitHub Desktop.
Copy to clipboard #js
export const copyToClipboard = async (text) => {
if (!navigator.clipboard)
// Clipboard API not available
throw new Error('Your browser doesn\'t allow clipboard access')
try {
await navigator.clipboard.writeText(text)
} catch (e) {
log.error('Failed to copy', e)
throw new Error('Could not copy to your clipboard')
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment