Sha256: 5cd86ed1507455369940f9004bfbdc189325b38081a15bb6cdb6d1d770500870
Contents?: true
Size: 355 Bytes
Versions: 15
Compression:
Stored size: 355 Bytes
Contents
export function copySupported () { return document.queryCommandSupported && document.queryCommandSupported("copy"); } export default function copyToClipboard (str) { const el = document.createElement("textarea"); el.value = str; document.body.appendChild(el); el.select(); document.execCommand("copy"); document.body.removeChild(el); }
Version data entries
15 entries across 15 versions & 1 rubygems