Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for loading env values #23

Open
wants to merge 20 commits into
base: main
Choose a base branch
from
Open
Prev Previous commit
Next Next commit
full coverage
  • Loading branch information
Nicholas Kahlor committed Feb 26, 2021

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit f4d78dfda5d4ee8af26d83435abddb91417354d2
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -35,7 +35,7 @@ function symbolizeVars<T>(input: Record<string, string>) {
);
}

function parseEnv(options: DotenvConfigOptions = {}) {
function parseEnv(options: DotenvConfigOptions) {
config(options);
}