moveSync
This commit is contained in:
parent
690260a0fb
commit
2c852a22c1
|
@ -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,
|
||||||
|
|
Loading…
Reference in New Issue