mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
fix(env_loader): Off by one error (#668)
This commit is contained in:
@@ -363,7 +363,7 @@ pub const Lexer = struct {
|
||||
},
|
||||
' ' => {
|
||||
// Set key end to the last non space character
|
||||
key_end = this.current - 1;
|
||||
key_end = this.current;
|
||||
this.step();
|
||||
while (this.codepoint() == ' ') this.step();
|
||||
continue;
|
||||
|
||||
Reference in New Issue
Block a user