UNPKG

@effect-ts/system

Version:

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

10 lines (9 loc) 289 B
import { identity } from "../../../../Function/index.mjs"; import { partitionMap_ } from "./partitionMap.mjs"; /** * Partitions the elements of this chunk into two chunks */ export function separate(self) { return partitionMap_(self, identity); } //# sourceMappingURL=separate.mjs.map