UNPKG

uinix-fp-k

Version:
9 lines (8 loc) 158 B
/** * The K combinator (constant function). * * @template X, Y * @param {X} x * @returns {(_y: Y) => X} */ export function k<X, Y>(x: X): (_y: Y) => X;