()
| 31 | const RENDER_CACHE_MAX = 32; |
| 32 | const RENDER_CACHE_MIN_CONTENT_LENGTH = 512; |
| 33 | function nowMs() { |
| 34 | return typeof performance !== "undefined" && typeof performance.now === "function" ? performance.now() : Date.now(); |
| 35 | } |
| 36 | |
| 37 | type MarkdownRenderBlock = |
| 38 | | { |
no outgoing calls
no test coverage detected