Ingen beskrivning

identity.js 133B

123456
  1. // Keep the identity function around for default iteratees.
  2. function identity(value) {
  3. return value;
  4. }
  5. module.exports = identity;