export function validateEnvVar()

in src/utils/validateEnvVar.ts [6:12]


export function validateEnvVar(name: string): string {
    const value = process.env[name];
    if (!isDefined(value)) {
        throw new Error(`You must set the environment variable "${name}".`);
    }
    return value;
}