Skip to content

Instantly share code, notes, and snippets.

@OtayNacef
Created December 16, 2021 14:04
Show Gist options
  • Select an option

  • Save OtayNacef/42b75c1f4aeea8dfbff85f7258ab6fde to your computer and use it in GitHub Desktop.

Select an option

Save OtayNacef/42b75c1f4aeea8dfbff85f7258ab6fde to your computer and use it in GitHub Desktop.
typescript function to copy text to clipboard
export const copyToClipboard = (text: string) => {
navigator.clipboard.writeText(text);
};
@TLTechbender
Copy link

Thanks Chief!

@mcschwa
Copy link

mcschwa commented Apr 30, 2025

decent!

@coolpenguin-dev
Copy link

It is very helpful!!!

@OtayNacef
Copy link
Author

Happy to hear that! Glad it helped!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment