removed fs-extra dependancy

This commit is contained in:
Alfred Wärnsäter
2021-08-06 11:02:55 +02:00
parent 730b2dd874
commit 1924cd1822
4 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -217,7 +217,7 @@ global.rm_rf = function(/*String*/ aFilename)
// from stackoverflow
function copyRecursiveSync (src, dest) {
global.copyRecursiveSync = function (src, dest) {
var exists = fs.existsSync(src);
var stats = exists && fs.statSync(src);
var isDirectory = exists && stats.isDirectory();