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