EG/Cesium-1.132/node_modules/underscore/cjs/identity.js
2025-08-25 17:48:13 +08:00

7 lines
133 B
JavaScript

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