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

src: make parsing compatible with motdotla/dotenv package #54215

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix linter issues
  • Loading branch information
marekpiechut committed Aug 5, 2024
commit 00fa796f1db6bb07e2d429b53694116c5e50d0dc
4 changes: 2 additions & 2 deletions src/node_dotenv.cc
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ void Dotenv::ParseContent(const std::string_view input) {
// Skip whitespace after key
i++;
}
//Move start/end pointers to the beginning of the value
// Move start/end pointers to the beginning of the value
start = i + 1;
end = i + 1;
continue;
Expand Down Expand Up @@ -219,7 +219,7 @@ void Dotenv::ParseContent(const std::string_view input) {
quote = 0;
inComment = false;
} else if (!inComment) {
//Char is not a comment, advance the key/value end pointer
// Char is not a comment, advance the key/value end pointer
end++;
}
}
Expand Down
Loading