abc-copy
v0.0.11
Published
abc-copy is an tool that helps you copy text to your clipboard
Downloads
38
Readme
abc-copy
version 0.01
abc-copy is a browser tools that helps you to copy text using navigator.clipboard API and TextRange simulation copy.
install
$ npm install abc-copyimport
const abcCopy = require('abc-copy')demo
const abcCopy = require('abc-copy')
// normal copy(not in modal)
abcCopy('content')<div class="modal" id="modal-content-id"></div>
<script>
// copy in an modal
abcCopy('content', {
target: document.getElementById('modal-content-id')
})
</script>api
params
content <string>the text you want to copy to your clipboard.option <object>(optional)- target: A HtmlDomElement that mounted the hidden TextRange when using the TextRange strategy.Default value is
document.body
- target: A HtmlDomElement that mounted the hidden TextRange when using the TextRange strategy.Default value is
return
Promise<void>indicating the result of the copy action, resolve means success while reject means failure.
