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

5 lines
120 B
JavaScript
Raw Normal View History

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