identityFunc.mjs 107 B

123456
  1. /**
  2. * Returns the first argument it receives.
  3. */
  4. export default function identityFunc(x) {
  5. return x;
  6. }