setup-maven/node_modules/underscore/cjs/identity.js

7 lines
133 B
JavaScript
Raw Normal View History

2022-06-28 08:39:30 +00:00
// Keep the identity function around for default iteratees.
function identity(value) {
return value;
}
module.exports = identity;