napi_status napi_coerce_to_string(napi_env env,napi_value value,napi_value* result)
[in] env: The environment that the API is invoked under.[in] value: The JavaScript value to coerce.[out] result:napi_valuerepresenting the coerced JavaScriptString.
Returns napi_ok if the API succeeded.
This API implements the abstract operation ToString() as defined in
[Section 7.1.13][] of the ECMAScript Language Specification.
This API can be re-entrant if getters are defined on the passed-in Object.
