identityFunc.js.flow 132 B

1234567
  1. // @flow strict
  2. /**
  3. * Returns the first argument it receives.
  4. */
  5. export default function identityFunc<T>(x: T): T {
  6. return x;
  7. }