/** * A function that always returns the value passed to it * @param {*} v - A value to be returned * @returns {*} The value passed in */ export default function identity(v: T): T