UNPKG

uinix-fp-k

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