Skip to content

Commit

Permalink
remove console.logs
Browse files Browse the repository at this point in the history
  • Loading branch information
motdotla committed Feb 10, 2024
1 parent 9356941 commit 16249b6
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,10 @@ function interpolate (value, processEnv, parsed) {
if (escaped === '\\') {
return match.slice(1)
} else {
console.log('processEnv[key]', processEnv[key])
if (processEnv[key]) {
return processEnv[key]
}

console.log('defaultValue', defaultValue)
if (defaultValue) {
if (defaultValue.startsWith('$')) {
return interpolate(defaultValue, processEnv, parsed)
Expand Down

0 comments on commit 16249b6

Please sign in to comment.