@anzerr/fs.copy

util to copy directories or files

Usage no npm install needed!

<script type="module">
  import anzerrFsCopy from 'https://cdn.skypack.dev/@anzerr/fs.copy';
</script>

README

Intro

GitHub Actions status | linter GitHub Actions status | publish GitHub Actions status | test

Copy a directory or file to a location

Install

npm install --save git+https://git@github.com/anzerr/fs.copy.git
npm install --save @anzerr/fs.copy

Example

const copy = require('fs.copy');

copy('./node_modules', './stuff').then(() => {
    console.log('done');
}).catch((err) => {
    console.log(err);
});