6.0.0 • Published 2 years ago

fs-move v6.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
2 years 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

2 years ago

5.0.0

2 years ago

4.0.2

2 years ago

4.0.1

2 years ago

4.0.0

2 years ago

3.0.0

4 years ago

2.0.1

6 years ago

2.0.0

6 years ago

1.3.0

6 years ago

1.2.0

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.0

6 years ago

0.0.0

6 years ago