identityFunc.mjs 99 B

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