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