Loading search index…
No recent searches
No results for "Query here"
Returns the second argument, ignoring the first. Complementary to Kestrel; useful for selecting the second value.
export const Kite = (_: Fn) => (k: Fn) => k; export const KI = Kite; export const Second = Kite;
const selectSecond = Kite(100); selectSecond(5); // 5 selectSecond("chosen"); // "chosen"