identityFunc.js 205 B

12345678910111213
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = identityFunc;
  6. /**
  7. * Returns the first argument it receives.
  8. */
  9. function identityFunc(x) {
  10. return x;
  11. }