UNPKG

@brizy/media-gallery

Version:
10 lines (9 loc) 344 B
import { EMPTY } from "rxjs"; import { filter, mergeMap, tap } from "rxjs/operators"; import { pipe } from "ramda"; import { isClose } from "../../../global/actions"; export var sendCloseEpic = function(action$, state$, c) { return action$.pipe(filter(isClose), tap(pipe(c.onClose)), mergeMap(function() { return EMPTY; })); };