/** * Returns the value unchanged. * * @example * [1, 2, 3].map(identity); */ export default function identity(value: T): T { return value; }