mirror of
https://github.com/zoriya/v10.git
synced 2026-08-08 07:07:10 +00:00
4 lines
61 B
TypeScript
4 lines
61 B
TypeScript
export function identity<T>(value: T): T {
|
|
return value;
|
|
}
|