aboutsummaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/fstream-npm/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/fstream-npm/README.md')
-rw-r--r--deps/npm/node_modules/fstream-npm/README.md18
1 files changed, 0 insertions, 18 deletions
diff --git a/deps/npm/node_modules/fstream-npm/README.md b/deps/npm/node_modules/fstream-npm/README.md
deleted file mode 100644
index 2c01e90731..0000000000
--- a/deps/npm/node_modules/fstream-npm/README.md
+++ /dev/null
@@ -1,18 +0,0 @@
-# fstream-npm
-
-This is an fstream DirReader class that will read a directory and filter
-things according to the semantics of what goes in an npm package.
-
-For example:
-
-```javascript
-// This will print out all the files that would be included
-// by 'npm publish' or 'npm install' of this directory.
-
-var FN = require("fstream-npm")
-FN({ path: "./" })
- .on("child", function (e) {
- console.error(e.path.substr(e.root.path.length + 1))
- })
-```
-