develop
/** * The unary identity function. * Returns whatever is passed to it. */ export function identity<T>(v: T): T { return v; }