gitextract_t_80qwdm/ ├── .babelrc.json ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── documentation.md │ │ └── proposal.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── stale.yml │ └── workflows/ │ ├── publish.yml │ └── test.js.yml ├── .gitignore ├── .husky/ │ ├── .gitignore │ └── pre-commit ├── .nvmrc ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── bower.json ├── composer.json ├── contributing.md ├── demo/ │ ├── constructor-node.html │ ├── constructor-nodelist.html │ ├── constructor-selector.html │ ├── function-target.html │ ├── function-text.html │ ├── target-div.html │ ├── target-input-number.html │ ├── target-input.html │ ├── target-programmatic-copy.html │ ├── target-programmatic-cut.html │ ├── target-textarea.html │ └── text-programmatic-copy.html ├── dist/ │ └── clipboard.js ├── karma.conf.js ├── package.js ├── package.json ├── readme.md ├── src/ │ ├── actions/ │ │ ├── copy.js │ │ ├── cut.js │ │ └── default.js │ ├── clipboard.d.ts │ ├── clipboard.js │ ├── clipboard.test-d.ts │ └── common/ │ ├── command.js │ └── create-fake-element.js ├── test/ │ ├── actions/ │ │ ├── copy.js │ │ ├── cut.js │ │ └── default.js │ ├── clipboard.js │ └── common/ │ ├── command.js │ └── create-fake-element.js └── webpack.config.js