Checks if the device has an active internet connection by making a fetch request to
'https://ipv4.icanhazip.com/' and resolving the result.
The request will time out if the specified timeout duration is exceeded.
Returns
A Promise that resolves to true if the device is online
(i.e., the fetch request is successful), or false if the device
is offline or the request fails or times out.
Parameters
options: { timeout: number; }
The options object for the function.
timeout: number
The timeout duration in milliseconds. If the request
takes longer than this, it will be aborted.
Checks if the device has an active internet connection by making a fetch request to 'https://ipv4.icanhazip.com/' and resolving the result. The request will time out if the specified timeout duration is exceeded.
Returns
A Promise that resolves to
true
if the device is online (i.e., the fetch request is successful), orfalse
if the device is offline or the request fails or times out.