export function identity<TType>(x: TType): TType {
  return x;
}
