Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
tap(tapFn) {
this.__transforms.push(tap(([key, value]) => tapFn(value, key)));
return this;
}
tap(tapFn) {
this.__transforms.push(tap(item => tapFn(item)));
return this;
}
tap(tapFn) {
this.__transforms.push(tap(tapFn));
return this;
}