UNPKG

@naturalcycles/nodejs-lib

Version:
17 lines (16 loc) 352 B
/** * Returns true if load was successful */ export function loadEnvFileIfExists(path = '.env') { try { process.loadEnvFile(path); return true; } catch (err) { if (err.code === 'ENOENT') { // gracefully ignore that the file does not exist return false; } throw err; } }