(block: unknown)
| 84 | } |
| 85 | |
| 86 | function hasCacheControl(block: unknown): boolean { |
| 87 | return !!block && typeof block === "object" && "cache_control" in (block as Json); |
| 88 | } |
| 89 | |
| 90 | function messageHasBreakpoint(msg: Json): boolean { |
| 91 | const content = msg.content; |
no outgoing calls
no test coverage detected