* Creates a new EndTruncatingAccumulator * @param maxSize Maximum size in characters before truncation occurs
(private readonly maxSize: number = MAX_STRING_LENGTH)
| 147 | * @param maxSize Maximum size in characters before truncation occurs |
| 148 | */ |
| 149 | constructor(private readonly maxSize: number = MAX_STRING_LENGTH) {} |
| 150 | |
| 151 | /** |
| 152 | * Appends data to the accumulator. If the total size exceeds maxSize, |
nothing calls this directly
no outgoing calls
no test coverage detected