identity.ts 53 B

123
  1. export function identity<T>(x: T): T {
  2. return x;
  3. }