napi_status napi_create_bigint_uint64(napi_env env,uint64_t value,napi_value* result);
[in] env: The environment that the API is invoked under.[in] value: Unsigned integer value to be represented in JavaScript.[out] result: Anapi_valuerepresenting a JavaScriptBigInt.
Returns napi_ok if the API succeeded.
This API converts the C uint64_t type to the JavaScript BigInt type.
