UNPKG

@effect-ts/system

Version:

Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.

9 lines (8 loc) 180 B
import { collect_ } from "./collect.mjs"; /** * Filter out optional values */ export function compact(fa) { return collect_(fa, x => x); } //# sourceMappingURL=compact.mjs.map