(envPath)
| 2028 | return null; |
| 2029 | } |
| 2030 | function _resolveHome(envPath) { |
| 2031 | return envPath[0] === "~" ? path5.join(os4.homedir(), envPath.slice(1)) : envPath; |
| 2032 | } |
| 2033 | function _configVault(options) { |
| 2034 | _log("Loading env from encrypted .env.vault"); |
| 2035 | const parsed = DotenvModule._parseVault(options); |
no test coverage detected
searching dependent graphs…