abc-copy
TypeScript icon, indicating that this package has built-in type declarations

0.0.11 • Public • Published

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.

Readme

Keywords

Package Sidebar

Install

npm i abc-copy

Weekly Downloads

20

Version

0.0.11

License

MIT

Unpacked Size

21.9 kB

Total Files

23

Last publish

Collaborators

  • swainwong