napi_status napi_get_value_bigint_int64(napi_env env,napi_value value,int64_t* result,bool* lossless);
[in] env: The environment that the API is invoked under[in] value:napi_valuerepresenting JavaScriptBigInt.[out] result: Cint64_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 int64_t primitive equivalent of the given JavaScript
BigInt. If needed it will truncate the value, setting lossless to false.
