(word: string, count: number)
| 69 | } |
| 70 | |
| 71 | function repeatedWord(word: string, count: number): string { |
| 72 | return Array.from({ length: count }, () => word).join(" ") |
| 73 | } |
| 74 | |
| 75 | function buildCompactedMessages(): WithParts[] { |
| 76 | const sessionID = "ses_compaction_token_usage" |
no outgoing calls
no test coverage detected