npm.io
0.0.11 • Published 6 years ago

abc-copy

Licence
MIT
Version
0.0.11
Deps
0
Size
21 kB
Vulns
0
Weekly
0

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-copy

import

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
return
  • Promise<void> indicating the result of the copy action, resolve means success while reject means failure.

Keywords