From 10c84c08751982e19e1031b812964f7822abb56a Mon Sep 17 00:00:00 2001 From: michael Date: Sun, 27 Oct 2019 13:11:48 +0000 Subject: [PATCH] * Correct name of Buffer class --- packages/rtl/nodejs.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/rtl/nodejs.pas b/packages/rtl/nodejs.pas index da542d6..7326716 100644 --- a/packages/rtl/nodejs.pas +++ b/packages/rtl/nodejs.pas @@ -49,7 +49,7 @@ type { TNJSBuffer } - TNJSBuffer = class external name 'buffer' + TNJSBuffer = class external name 'Buffer' public class function alloc(Size: NativeInt): TJSArrayBuffer; class function alloc(Size: NativeInt; const Fill: JSValue): TJSArrayBuffer;