(text: string | object)
| 28 | } |
| 29 | |
| 30 | export function countTokensJson(text: string | object): number { |
| 31 | return countTokens(JSON.stringify(text)) |
| 32 | } |
| 33 | |
| 34 | export function countTokensForFiles( |
| 35 | files: Record<string, string | null>, |
no test coverage detected