I'd like to pass parameters to my function `tapFunction`, like this: ```javascript gulp.src(glob).pipe(tap(tapFunction, 'param')); ``` I know I can do this setting variables outside the tap scope, but that doesn't look good and doesn't scale well.