pub unsafe extern "C" fn JSStringCreateWithCharacters(
chars: *const JSChar,
numChars: usize,
) -> JSStringRef
Expand description
Creates a JavaScript string from a buffer of Unicode characters.
chars
: The buffer of Unicode characters to copy into the newJSStringRef
.numChars
: The number of characters to copy from the buffer pointed to bychars
.
Returns a JSStringRef
containing chars
. Ownership follows the
Create Rule.