Copy the innerText of the Element to the clipboard
npm install clipeaceA simple clipboard module
```
npm install --save clipeace
`js
const clipeace = require('clipeace');
const target = document.getElementById('target');
clipeace(target)
.then((res) => {
// suceess
}).catch((err) => {
// failure
})
``