This commit is contained in:
Michael Bradley, Jr 2018-08-12 14:08:37 -05:00
parent 690260a0fb
commit 2c852a22c1
1 changed files with 5 additions and 0 deletions

View File

@ -23,6 +23,10 @@ function move(){
return fs.move.apply(fs.move, arguments); return fs.move.apply(fs.move, arguments);
} }
function moveSync() {
return fs.moveSync.apply(fs.moveSync, arguments);
}
function appendFileSync() { function appendFileSync() {
return fs.appendFileSync.apply(fs.writeFileSync, arguments); return fs.appendFileSync.apply(fs.writeFileSync, arguments);
} }
@ -92,6 +96,7 @@ module.exports = {
copy, copy,
copySync, copySync,
move, move,
moveSync,
readFile, readFile,
readFileSync, readFileSync,
appendFileSync, appendFileSync,