sindresorhus / gulp-filter

Filter files in a `vinyl` stream
MIT License
315 stars 37 forks source link

passthrough misspelled #77

Closed trs79 closed 7 years ago

trs79 commented 7 years ago

In index.js line line 22 passthrough is missing an 'r', i.e.

this: let jsFilter = filter('**/*.js', { restore: true, passthough: false });

should be this: let jsFilter = filter('**/*.js', { restore: true, passthrough: false });