tondrej / chakracore-delphi

Delphi and Free Pascal bindings and classes for Microsoft's ChakraCore library
https://tondrej.blogspot.com/search/label/chakracore
MIT License
137 stars 34 forks source link

String conversion error #8

Closed pony5551 closed 5 years ago

pony5551 commented 5 years ago

empty string conversion error

function StringToJsString(const S: UnicodeString): JsValueRef;

var s: JsValueRef; begin s := StringToJsString(UTF8String('')); //passed s := StringToJsString('');//this error end;