quitando basura del index
[VSoRC/.git] / node_modules / node-static / lib / node-static / util.js
diff --git a/node_modules/node-static/lib/node-static/util.js b/node_modules/node-static/lib/node-static/util.js
deleted file mode 100644 (file)
index 02de548..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-var fs   = require('fs')
-  , path = require('path');
-
-exports.mstat = function (dir, files, callback) {
-    (function mstat(files, stats) {
-        var file = files.shift();
-
-        if (file) {
-            fs.stat(path.join(dir, file), function (e, stat) {
-                if (e) {
-                    callback(e);
-                } else {
-                    mstat(files, stats.concat([stat]));
-                }
-            });
-        } else {
-            callback(null, {
-                size: stats.reduce(function (total, stat) {
-                    return total + stat.size;
-                }, 0),
-                mtime: stats.reduce(function (latest, stat) {
-                    return latest > stat.mtime ? latest : stat.mtime;
-                }, 0),
-                ino: stats.reduce(function (total, stat) {
-                    return total + stat.ino;
-                }, 0)
-            });
-        }
-    })(files.slice(0), []);
-};