@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
19 lines (15 loc) • 376 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.second = second;
var _core = /*#__PURE__*/require("./core.js");
// ets_tracing: off
/**
* Returns an effectful function that extracts out the second element of a
* tuple.
*/
function second(__trace) {
return (0, _core.access)(a => a, __trace);
}
//# sourceMappingURL=second.js.map