(obj)
| 70080 | if (typeof process !== "undefined") { |
| 70081 | return process.env?.[env2]?.trim() ?? void 0; |
| 70082 | } |
| 70083 | if (typeof Deno !== "undefined") { |
| 70084 | return Deno.env?.get?.(env2)?.trim(); |
| 70085 | } |
| 70086 | return void 0; |
| 70087 | }; |
| 70088 | function isEmptyObj(obj) { |
| 70089 | if (!obj) |
| 70090 | return true; |
| 70091 | for (const _k in obj) |
no outgoing calls
no test coverage detected