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) 240 B
import { access } from "./core.mjs"; /** * Returns an effectful function that extracts out the first element of a * tuple. */ export function first(__trace) { return access(_ => _.get(0), __trace); } //# sourceMappingURL=first.mjs.map