moveSync
This commit is contained in:
parent
690260a0fb
commit
2c852a22c1
|
@ -23,6 +23,10 @@ function move(){
|
|||
return fs.move.apply(fs.move, arguments);
|
||||
}
|
||||
|
||||
function moveSync() {
|
||||
return fs.moveSync.apply(fs.moveSync, arguments);
|
||||
}
|
||||
|
||||
function appendFileSync() {
|
||||
return fs.appendFileSync.apply(fs.writeFileSync, arguments);
|
||||
}
|
||||
|
@ -92,6 +96,7 @@ module.exports = {
|
|||
copy,
|
||||
copySync,
|
||||
move,
|
||||
moveSync,
|
||||
readFile,
|
||||
readFileSync,
|
||||
appendFileSync,
|
||||
|
|
Loading…
Reference in New Issue