Skip to content

Instantly share code, notes, and snippets.

@devaex
devaex / sample.pas
Created March 23, 2021 16:39
mORMot2 QuickJS sample
function Log(ctx: JSContext; this_val: JSValueConst; argc: Integer; argv: PJSValueConstArr): JSValue; cdecl;
var
i : Integer;
str : PChar;
bStr : String;
begin
bStr := '';
for i := 0 to Pred(argc) do
begin
if i <> 0 then