copy-text-or-rich-text-to-clipboard-asyncdeprecated

copy text or rich text to clipboard

Usage no npm install needed!

<script type="module">
  import copyTextOrRichTextToClipboardAsync from 'https://cdn.skypack.dev/copy-text-or-rich-text-to-clipboard-async';
</script>

README

copy-async

复制文本、富文本到剪切板,WebSite

usage

npm i copy-text-or-rich-text-to-clipboard-async
import copy from 'copy-text-or-rich-text-to-clipboard-async';

await copy('hello world');
await copy('<h1>hello world</h1>');
await copy(document.querySelector('#rich-text'));
await copy(document.querySelector('#rich-text'), { html: true });