(content: string)
| 72 | } |
| 73 | |
| 74 | async createChunks(content: string): Promise<string[]> { |
| 75 | const chunks = await this.splitText(content); |
| 76 | return chunks.map(chunk => chunk.replace(/\0/g, '')); |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | export class RecursiveCharacterTextSplitter extends TextSplitter { |
no test coverage detected