1.0.5 • Published 6 years ago

dep-copy-file v1.0.5

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

dep-copy-file

copy file or directory for Node.js

Install

With npm do:

npm install dep-copy-file --save

Example

const copy = require('dep-copy-file');

const source = './source';
const dest = './dest';

copy(source,dest).then(()=>{
    //dosomething...
})
.catch(()=>{
    //dosomething...
});

API

  • copyDep(source,dest);