identity.js 156 B

123456789101112
  1. /**
  2. * Returns the first argument provided to it.
  3. */
  4. function identity(val){
  5. return val;
  6. }
  7. module.exports = identity;