| 1 | import { describe, it, expect } from 'vitest'; |
| 2 | import { splitForStream, type Piece } from '../src/bot/chunk.ts'; |
| 3 | |
| 4 | const balancedFences = (s: string) => (s.match(/```/g)?.length ?? 0) % 2 === 0; |
nothing calls this directly
no test coverage detected