mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-04-12 19:59:00 +00:00
19 lines
612 B
TypeScript
19 lines
612 B
TypeScript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
|
|
/**
|
|
* Read an environment variable.
|
|
*
|
|
* Trims beginning and trailing whitespace.
|
|
*
|
|
* Will return undefined if the environment variable doesn't exist or cannot be accessed.
|
|
*/
|
|
export const readEnv = (env: string): string | undefined => {
|
|
if (typeof (globalThis as any).process !== 'undefined') {
|
|
return (globalThis as any).process.env?.[env]?.trim() ?? undefined;
|
|
}
|
|
if (typeof (globalThis as any).Deno !== 'undefined') {
|
|
return (globalThis as any).Deno.env?.get?.(env)?.trim();
|
|
}
|
|
return undefined;
|
|
};
|