1.0.12 • Published 3 years ago
@anzerr/fs.copy v1.0.12
Intro
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);
});