NAPI_EXTERN napi_status napi_get_reference_value(napi_env env,napi_ref ref,napi_value* result);
the napi_value passed in or out of these methods is a handle to the
object to which the reference is related.
[in] env: The environment that the API is invoked under.[in] ref:napi_reffor which we requesting the correspondingObject.[out] result: Thenapi_valuefor theObjectreferenced by thenapi_ref.
Returns napi_ok if the API succeeded.
If still valid, this API returns the napi_value representing the
JavaScript Object associated with the napi_ref. Otherwise, result
will be NULL.
