mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 14:47:53 +02:00
nodejs: fixed GetEnvironmentVariable on non existing vars
This commit is contained in:
parent
2e7fc52370
commit
a01249f56d
@ -63,8 +63,14 @@ begin
|
||||
end;
|
||||
|
||||
function MyGetEnvironmentVariable(Const EnvVar: String): String;
|
||||
var
|
||||
v: JSValue;
|
||||
begin
|
||||
Result:=String(TNJSProcess.env[EnvVar]);
|
||||
v:=TNJSProcess.env[EnvVar];
|
||||
if isString(v) then
|
||||
Result:=String(v)
|
||||
else
|
||||
Result:='';
|
||||
end;
|
||||
|
||||
function MyGetEnvironmentVariableCount: Integer;
|
||||
|
Loading…
Reference in New Issue
Block a user