* Mutable render state shared between the plugin API and the rehype * closure. Stored separately from AnimateConfig so that the processor * cache (which retains the first closure) always reads from the same * object that setPrevContentLength / getLastRenderCharCount mutate.
| 126 | * object that setPrevContentLength / getLastRenderCharCount mutate. |
| 127 | */ |
| 128 | interface AnimateRenderState { |
| 129 | lastRenderCharCount: number; |
| 130 | prevContentLength: number; |
| 131 | } |
| 132 | |
| 133 | const processTextNode = ( |
| 134 | node: Text, |
nothing calls this directly
no outgoing calls
no test coverage detected