summaryrefslogtreecommitdiffstats
path: root/lib/fs/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/fs/index.js')
-rw-r--r--lib/fs/index.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/fs/index.js b/lib/fs/index.js
index 7b8fc46..bcd9345 100644
--- a/lib/fs/index.js
+++ b/lib/fs/index.js
@@ -30,6 +30,11 @@ FS.prototype.read = function(filename) {
// To implement for each fs
};
+// Read stat infos about a file
+FS.prototype.stat = function(filename) {
+ // To implement for each fs
+};
+
// Write a file and returns a promise
FS.prototype.write = function(filename, buffer) {
// To implement for each fs