Skip to content

Instantly share code, notes, and snippets.

@sakshstore
Created September 2, 2022 09:29
Show Gist options
  • Save sakshstore/df26d2528ed991bca01123e7c1e63375 to your computer and use it in GitHub Desktop.
Save sakshstore/df26d2528ed991bca01123e7c1e63375 to your computer and use it in GitHub Desktop.
const copyToClipboard = (text) =>
navigator?.clipboard?.writeText(text) ?? false;
// Usage
copyToClipboard("Hello World!");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment