Files
JiboSDK/node_modules/underscore/modules/identity.js
2026-03-22 03:21:45 +02:00

5 lines
120 B
JavaScript

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