napi_status napi_get_value_bigint_uint64(napi_env env,napi_value value,uint64_t* result,bool* lossless);
[in] env: The environment that the API is invoked under.[in] value:napi_valuerepresenting JavaScriptBigInt.[out] result: Cuint64_tprimitive equivalent of the given JavaScriptBigInt.[out] lossless: Indicates whether theBigIntvalue was converted losslessly.
Returns napi_ok if the API succeeded. If a non-BigInt is passed in it
returns napi_bigint_expected.
This API returns the C uint64_t primitive equivalent of the given JavaScript
BigInt. If needed it will truncate the value, setting lossless to false.
