UNPKG

clipboardy

Version:

Access the system clipboard (copy/paste)

20 lines (13 loc) 417 B
/* eslint-env browser */ const clipboard = {}; clipboard.write = async text => { await navigator.clipboard.writeText(text); }; clipboard.read = async () => navigator.clipboard.readText(); clipboard.readSync = () => { throw new Error('`.readSync()` is not supported in browsers!'); }; clipboard.writeSync = () => { throw new Error('`.writeSync()` is not supported in browsers!'); }; export default clipboard;