0.1.2 • Published 10 years ago

cp-r v0.1.2

Weekly downloads
3
License
MIT
Repository
github
Last release
10 years ago

cp-r

cp -R for node with no options

Installation

With your favorite package manager:

then in your app:

var copy = require('cp-r')

API

copy(a, b)

Copy whatever is at a to b. Be that a file, directory, or symlink.

copy('test', 'tmp').read(function(){
  console.log('done!')
})