From fd54970bf53bfa5085c52623dbb52a4f77584e08 Mon Sep 17 00:00:00 2001 From: Henrique Gottardi Werlang Date: Thu, 27 Feb 2025 15:39:10 -0300 Subject: [PATCH 1/2] Changed the returning type to the type defined in the documentation. --- packages/rtl/src/weborworker.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/rtl/src/weborworker.pas b/packages/rtl/src/weborworker.pas index 5cbdb6c..949d670 100644 --- a/packages/rtl/src/weborworker.pas +++ b/packages/rtl/src/weborworker.pas @@ -309,7 +309,7 @@ type function slice(aStart,aEnd : NativeInt) : TJSBlob; overload; function slice(aStart,aEnd : NativeInt; AContentType : String) : TJSBlob; overload; function arrayBuffer : TJSPromise; - function bytes: TJSPromise; + function bytes: TJSUint8Array; async; function stream: TJSReadableStream; function text: TJSPromise; property size : NativeInt read FSize; From e34d33f80d0a7436f451cf7c1d1b33845a27b98c Mon Sep 17 00:00:00 2001 From: Henrique Gottardi Werlang Date: Thu, 27 Feb 2025 15:40:29 -0300 Subject: [PATCH 2/2] Declaring the function in the array to convert to base 64 the internal value. --- packages/rtl/src/js.pas | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/rtl/src/js.pas b/packages/rtl/src/js.pas index a11d796..b13b2b8 100644 --- a/packages/rtl/src/js.pas +++ b/packages/rtl/src/js.pas @@ -653,6 +653,8 @@ type class function _of(aValue : jsValue) : TJSUInt8Array; varargs; external name 'of'; reintroduce; overload; function subarray(aBegin, aEnd: Integer): TJSUInt8Array; overload; function subarray(aBegin: Integer): TJSUInt8Array; overload; + function toBase64: String; + function toBase64(options: TJSObject): String; procedure _set(anArray : Array of Byte); external name 'set'; reintroduce; overload; procedure _set(anArray : Array of Byte; anOffset : NativeInt); external name 'set'; overload; Property values[Index : NativeInt] : Byte Read getTypedValue Write setTypedValue; default;