pub unsafe extern "C" fn JSValueMakeString(
ctx: JSContextRef,
string: JSStringRef,
) -> JSValueRefExpand description
Creates a JavaScript value of the string type.
ctx: The execution context to use.string: TheJSStringRefto assign to the newly createdJSValueRef. The newly createdJSValueRefretainsstring, and releases it upon garbage collection.
Returns a JSValueRef of the string type, representing the value of string.