@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
12 lines (11 loc) • 349 B
JavaScript
// ets_tracing: off
import { identity } from "../../../../Function/index.mjs";
import * as Chain from "./chain.mjs";
/**
* Flattens this stream-of-streams into a stream made of the concatenation in
* strict order of all the streams.
*/
export function flatten(self) {
return Chain.chain_(self, identity);
}
//# sourceMappingURL=flatten.mjs.map