UNPKG
@athrva/get-ip
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Get public IP from api.athrva.in
@athrva/get-ip
/
index.js
7 lines
•
196 B
JavaScript
View Raw
1
2
3
4
5
6
7
export
default
{
async
address
(
) {
const
res =
await
fetch
(
'https://api.athrva.in/get-ip?apikey=coolatharva'
);
const
data =
await
res.
json
();
return
data.
ip
; } };