login/node_modules/underscore/amd/identity.js
2022-12-19 15:48:51 +05:30

10 lines
160 B
JavaScript

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