()
| 1472 | } |
| 1473 | |
| 1474 | function getMemorySnapshot() { |
| 1475 | return { |
| 1476 | peakMemoryMb: bytesToMb(process.memoryUsage.rss()), |
| 1477 | memoryFreeMb: bytesToMb(freemem()), |
| 1478 | }; |
| 1479 | } |
| 1480 | |
| 1481 | function metaString(meta: Record<string, unknown> | undefined, key: string): string | undefined { |
| 1482 | const value = meta?.[key]; |
no test coverage detected