identity.js 160 B

1234567891011
  1. define(function () {
  2. // Keep the identity function around for default iteratees.
  3. function identity(value) {
  4. return value;
  5. }
  6. return identity;
  7. });