* Convert GB to bytes
(gb: number)
| 31 | * Convert GB to bytes |
| 32 | */ |
| 33 | function gbToBytes(gb: number): number { |
| 34 | return gb * 1024 * 1024 * 1024 |
| 35 | } |
| 36 | |
| 37 | /** |
| 38 | * Get storage limits from environment variables with fallback to constants |
no outgoing calls
no test coverage detected