(value: unknown)
| 175 | } |
| 176 | |
| 177 | function getJsonSize(value: unknown): number | null { |
| 178 | try { |
| 179 | return Buffer.byteLength(JSON.stringify(value), 'utf8') |
| 180 | } catch { |
| 181 | return null |
| 182 | } |
| 183 | } |
| 184 | |
| 185 | function getExecutionEventEntryJson(entry: ExecutionEventEntry): string { |
| 186 | return JSON.stringify(entry) |
no outgoing calls
no test coverage detected