mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
17 lines
449 B
JavaScript
17 lines
449 B
JavaScript
import { readFileSync, existsSync } from 'fs';
|
|
import { parse } from 'dotenv';
|
|
|
|
/**
|
|
* dotenv wrapper
|
|
* @param envPath string
|
|
*/
|
|
export default function loadDotEnv(envPath) {
|
|
if (existsSync(envPath)) {
|
|
const parsed = parse(readFileSync(envPath, 'utf-8')) || {};
|
|
Object.keys(parsed).forEach((key) => {
|
|
// eslint-disable-next-line no-prototype-builtins
|
|
process.env[key] = parsed[key];
|
|
});
|
|
}
|
|
}
|