(value: string | undefined)
| 104 | return Object.prototype.hasOwnProperty.call(env, key); |
| 105 | } |
| 106 | |
| 107 | function normalizeOptionalString(value: string | undefined): string | undefined { |
| 108 | if (value === undefined) { |
| 109 | return undefined; |
| 110 | } |
| 111 | |
| 112 | const trimmed = value.trim(); |
| 113 | return trimmed || undefined; |
| 114 | } |
| 115 | |
| 116 | function parseBooleanEnv(value: string | undefined): boolean | undefined { |
no outgoing calls
no test coverage detected