identityFunc.js.flow 133 B

12345678
  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. }