📄 identity.js
/home/palash/git/site/node_modules/underscore/amd/identity.js
Language: js • Lines: 10
define(function () {

  // Keep the identity function around for default iteratees.
  function identity(value) {
    return value;
  }

  return identity;

});