Files
letta-server/sandbox/resources/server/user-function.ts
Kian Jones b8e9a80d93 merge this (#4759)
* wait I forgot to comit locally

* cp the entire core directory and then rm the .git subdir
2025-09-17 15:47:40 -07:00

3 lines
168 B
TypeScript

// THIS FILE CONTAINS USER DEFINED CODE THAT MAY BE OVERWRITTEN.
export function repeatString(str: string, multiplier: number): string {return str.repeat(multiplier);}