/
githubmirror
/
clipboard.js
Обзор
Документация
Войти
/
githubmirror
/
clipboard.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/actions/cut.js
15 строк
320 B
Beto Muniz
Isolate actions strategies in order to code improvement and programmatic usage. (#749)
18 май 2021, 17:46
Не верифицирован
18 май 2021, 17:46
44df750
Код
Авторство
О чём код?
import select from 'select'; import command from '../common/command'; /** * Cut action wrapper. * @param {String|HTMLElement} target * @return {String} */ const ClipboardActionCut = (target) => { const selectedText = select(target); command('cut'); return selectedText; }; export default ClipboardActionCut;