Skip to content

Commit

Permalink
Update: Remove explicit nonull option because it does nothing with th…
Browse files Browse the repository at this point in the history
…e Event API of glob
  • Loading branch information
phated committed Feb 21, 2017
1 parent 2af4876 commit dfa35eb
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ function globStream(globs, opt) {
ourOpt.cwd = typeof ourOpt.cwd === 'string' ? ourOpt.cwd : process.cwd();
ourOpt.dot = typeof ourOpt.dot === 'boolean' ? ourOpt.dot : false;
ourOpt.silent = typeof ourOpt.silent === 'boolean' ? ourOpt.silent : true;
ourOpt.nonull = typeof ourOpt.nonull === 'boolean' ? ourOpt.nonull : false;
ourOpt.cwdbase = typeof ourOpt.cwdbase === 'boolean' ? ourOpt.cwdbase : false;

if (ourOpt.cwdbase) {
Expand Down

0 comments on commit dfa35eb

Please sign in to comment.