summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/fstream/examples/pipe.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/fstream/examples/pipe.js')
-rw-r--r--deps/npm/node_modules/fstream/examples/pipe.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/npm/node_modules/fstream/examples/pipe.js b/deps/npm/node_modules/fstream/examples/pipe.js
index 648ec84938..0bad122f9b 100644
--- a/deps/npm/node_modules/fstream/examples/pipe.js
+++ b/deps/npm/node_modules/fstream/examples/pipe.js
@@ -4,7 +4,7 @@ var path = require("path")
var r = fstream.Reader({ path: path.dirname(__dirname)
, filter: function () {
return !this.basename.match(/^\./) &&
- !this.basename.match(/^node_modules$/)
+ !this.basename.match(/^node_modules$/) &&
!this.basename.match(/^deep-copy$/)
}
})