(totalMb: number = getSystemTotalMb())
| 176 | * small VMs, small Lambda tiers, small containers) are detected correctly. |
| 177 | */ |
| 178 | export function isLowMemorySystem(totalMb: number = getSystemTotalMb()): boolean { |
| 179 | return totalMb <= LOW_MEMORY_TOTAL_MB_THRESHOLD; |
| 180 | } |
no test coverage detected