File size: 309 Bytes
fc93158 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | export function toStringEnv(env?: NodeJS.ProcessEnv): Record<string, string> {
if (!env) {
return {};
}
const out: Record<string, string> = {};
for (const [key, value] of Object.entries(env)) {
if (value === undefined) {
continue;
}
out[key] = String(value);
}
return out;
}
|