vytal-redux/src/utils/getIP.ts
2022-07-12 17:49:36 -04:00

9 lines
211 B
TypeScript

const getIP = () =>
fetch('http://ip-api.com/json/')
.then((response) => response.json())
.then((ipData) => {
chrome.storage.sync.set({ ipData })
return ipData
})
export default getIP