6 lines
122 B
JavaScript
6 lines
122 B
JavaScript
const {cp} = require('shelljs');
|
|
|
|
module.exports = function copyFolder() {
|
|
return (from, to) => cp('-rf', from, to);
|
|
};
|