From 2d2e582af77cf86e8591acf0a1c059b08e4b8b12 Mon Sep 17 00:00:00 2001 From: Alan K Date: Mon, 2 Dec 2013 16:25:32 -0500 Subject: [PATCH] Update README.md formatting --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index a085e53..f78dce1 100644 --- a/README.md +++ b/README.md @@ -5,9 +5,13 @@ Filer is a POSIX-like file system interface for browser-based JavaScript. The API is as close to the node.js [fs module](http://nodejs.org/api/fs.html) as possible with the following differences: + * No synchronous versions of methods (e.g., `mkdir()` but not `mkdirSync()`). + * No permissions (e.g., no `chown()`, `chmod()`, etc.). + * No support (yet) for `fs.watchFile()`, `fs.unwatchFile()`, `fs.watch()`. + * No support for stream-based operations (e.g., `fs.ReadStream`, `fs.WriteStream`). ### Contributing