File size: 195 Bytes
1e92f2d | 1 2 3 4 5 6 | if (typeof process.loadEnvFile === 'function') {
console.log(process.loadEnvFile());
}
typeof process.loadEnvFile === 'function' && process.loadEnvFile();
console.log(process.loadEnvFile());
|
1e92f2d | 1 2 3 4 5 6 | if (typeof process.loadEnvFile === 'function') {
console.log(process.loadEnvFile());
}
typeof process.loadEnvFile === 'function' && process.loadEnvFile();
console.log(process.loadEnvFile());
|