6.0.0 • Published 6 months ago

fs-move v6.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
6 months ago

fs-move

npm version

Move directory with options

const move = require('fs-move');

(async () => {
  await move(src, dest, {
    merge: false,
    overwrite: false,
    purge: false,
    filter(src, dest) {
      return true;
    }
  });
})();

// or using callback
move(src, dest, err => {
  if (err) {
    throw err;
  }
});
6.0.0

6 months ago

5.0.0

10 months ago

4.0.2

1 year ago

4.0.1

1 year ago

4.0.0

1 year ago

3.0.0

3 years ago

2.0.1

5 years ago

2.0.0

5 years ago

1.3.0

5 years ago

1.2.0

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.0

5 years ago

0.0.0

5 years ago