UNPKG
defillama-api
Version:
latest (1.0.2)
1.0.2
1.0.1
A wrapper around the Defillama API
github.com/Hati0x/defillama-api/
Hati0x/defillama-api
defillama-api
/
lib
/
make_request.js
7 lines
(5 loc)
•
220 B
JavaScript
View Raw
1
2
3
4
5
6
7
const
_makeRequest =
async
(path,
params
) => {
const
url = path + (
params
&& Object.keys(
params
).length !=
0
?
"?"
+
new
URLSearchParams(
params
) :
""
);
return
await
fetch(url); }; export
default
_makeRequest;