mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-06 04:47:48 +02:00
* ExtractErrorMsg
This commit is contained in:
parent
7a9f1cddba
commit
f2cdddebcd
@ -212,7 +212,18 @@ Type
|
||||
function encodeInt(data : NativeInt; bits : Integer; Signed : boolean) : String;
|
||||
end;
|
||||
|
||||
Function ExtractErrorMsg(jsError : TJSError) : String;
|
||||
|
||||
implementation
|
||||
|
||||
Function ExtractErrorMsg(jsError : TJSError) : String;
|
||||
begin
|
||||
if Assigned(jsError) and isString(jsError.message) then
|
||||
Result:=jsError.message
|
||||
else
|
||||
Result:='Unknown error'
|
||||
end;
|
||||
|
||||
|
||||
end.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user