(value: string | undefined)
| 171 | export type ExecutionStreamStatus = 'active' | 'complete' | 'error' | 'cancelled' |
| 172 | |
| 173 | function isExecutionStreamStatus(value: string | undefined): value is ExecutionStreamStatus { |
| 174 | return value === 'active' || value === 'complete' || value === 'error' || value === 'cancelled' |
| 175 | } |
| 176 | |
| 177 | function getJsonSize(value: unknown): number | null { |
| 178 | try { |
no outgoing calls
no test coverage detected