mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-06 08:18:39 +00:00
3 lines
165 B
TypeScript
3 lines
165 B
TypeScript
export const noTransform = <T>(value: T) => value
|
|
|
|
export const inputEventTransform = <E>(event: E) => (event as { target: HTMLInputElement })?.target?.value as any
|