abc-copy

abc-copy is an tool that helps you copy text to your clipboard

Usage no npm install needed!

<script type="module">
  import abcCopy from 'https://cdn.skypack.dev/abc-copy';
</script>

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