summaryrefslogtreecommitdiff
path: root/node_modules/gulp-debug/node_modules/clone-stats/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/gulp-debug/node_modules/clone-stats/index.js')
-rw-r--r--node_modules/gulp-debug/node_modules/clone-stats/index.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/node_modules/gulp-debug/node_modules/clone-stats/index.js b/node_modules/gulp-debug/node_modules/clone-stats/index.js
deleted file mode 100644
index e797cfe6e..000000000
--- a/node_modules/gulp-debug/node_modules/clone-stats/index.js
+++ /dev/null
@@ -1,13 +0,0 @@
-var Stat = require('fs').Stats
-
-module.exports = cloneStats
-
-function cloneStats(stats) {
- var replacement = new Stat
-
- Object.keys(stats).forEach(function(key) {
- replacement[key] = stats[key]
- })
-
- return replacement
-}