We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
no-redundant-flow
import { flow } from "fp-ts/function"; declare const f: (n: number) => number; // ❌ const a = flow(f, flow(f, f)); // ✅ const c = flow(f, f, f);