(filePath: string)
| 64 | * Parse JSONL (JSON Lines) files — one JSON object per line |
| 65 | */ |
| 66 | export async function parseJSONL(filePath: string): Promise<FileParseResult> { |
| 67 | const fs = await import('fs/promises') |
| 68 | const content = await fs.readFile(filePath, 'utf-8') |
| 69 | return parseJSONLContent(content) |
| 70 | } |
| 71 | |
| 72 | /** |
| 73 | * Parse JSONL from buffer |
nothing calls this directly
no test coverage detected