/**
 * Identity function - returns the argument as-is.
 */
const identity = <T>(x: T): T => x

export { identity }
export default identity
