mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-04-29 04:00:09 +00:00
12 lines
191 B
JavaScript
12 lines
191 B
JavaScript
// src/utils/functions.tsx
|
|
function identity(t) {
|
|
return t;
|
|
}
|
|
function identityArgs(...args) {
|
|
return args;
|
|
}
|
|
export {
|
|
identity,
|
|
identityArgs
|
|
};
|
|
//# sourceMappingURL=functions.js.map
|