9 lines
170 B
JavaScript
9 lines
170 B
JavaScript
import 'dotenv/config';
|
|
|
|
export function checkEnv(keys) {
|
|
for (const key of keys) {
|
|
if (!process.env[key]) {
|
|
throw new Error(`${key} is not set`);
|
|
}
|
|
}
|
|
} |