Files
JiboSDK/node_modules/underscore/amd/identity.js

11 lines
160 B
JavaScript
Raw Normal View History

2026-03-22 03:21:45 +02:00
define(function () {
// Keep the identity function around for default iteratees.
function identity(value) {
return value;
}
return identity;
});