Update readme.md

This commit is contained in:
Patrick Steele-Idem 2013-07-24 23:47:28 -06:00
parent c9c99d43b6
commit ba0882a4d1

View file

@ -72,9 +72,9 @@ wrench.copyDirSyncRecursive('directory_to_copy', 'location_where_copy_should_end
exclude: regexpOrFunction // An include filter (either a regexp or a function) exclude: regexpOrFunction // An include filter (either a regexp or a function)
}); });
*NOTE:* If a RegExp is provided then then it will be matched against the filename. If a function is // Note: If a RegExp is provided then then it will be matched against the filename. If a function is
provided then the signature should be the following: // provided then the signature should be the following:
`function(filename, dir) { return result; }` // function(filename, dir) { return result; }
// Read lines in from a file until you hit the end // Read lines in from a file until you hit the end
var f = new wrench.LineReader('x.txt'); var f = new wrench.LineReader('x.txt');