UNPKG

@thi.ng/api

Version:
15 lines (14 loc) 263 B
/** * Identity function: `(x) => x` * * @param x */ export const identity = (x) => x; /** * Zero-arg function always returning true. */ export const always = () => true; /** * Zero-arg function always returning false. */ export const never = () => false;