/
githubmirror
/
clipboard.js
Обзор
Документация
Войти
/
githubmirror
/
clipboard.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/common/command.js
12 строк
218 B
Beto Muniz
Isolate actions strategies in order to code improvement and programmatic usage. (#749)
18 май 2021, 17:46
Не верифицирован
18 май 2021, 17:46
44df750
Код
Авторство
О чём код?
/** * Executes a given operation type. * @param {String} type * @return {Boolean} */ export default function command(type) { try { return document.execCommand(type); } catch (err) { return false; } }