mirror of
https://github.com/sern-handler/handler
synced 2026-06-27 18:22:14 +00:00
remove barrel for core/structs
This commit is contained in:
@@ -26,7 +26,7 @@ import type { VoidResult } from './_internal';
|
||||
* @param item
|
||||
*/
|
||||
export function filterMapTo<V>(item: () => V): OperatorFunction<boolean, V> {
|
||||
return concatMap(shouldKeep => (shouldKeep ? of(item()) : EMPTY));
|
||||
return concatMap(keep => keep ? of(item()) : EMPTY);
|
||||
}
|
||||
|
||||
interface PluginExecutable {
|
||||
|
||||
Reference in New Issue
Block a user