UNPKG

clipboard

Version:

Modern copy to clipboard. No Flash. Just 2kb

13 lines (12 loc) 218 B
/** * Executes a given operation type. * @param {String} type * @return {Boolean} */ export default function command(type) { try { return document.execCommand(type); } catch (err) { return false; } }