internet-available icon indicating copy to clipboard operation
internet-available copied to clipboard

upgrade to ESM

Open mesqueeb opened this issue 4 years ago • 1 comments

see a checklist here https://github.com/sindresorhus/meta/discussions/15

mesqueeb avatar Sep 11 '21 00:09 mesqueeb

This one works with ESM https://github.com/jd1378/is-internet-available

import { isInternetAvailable, InternetAvailabilityService } from 'is-internet-available'

const googleIsReachable = await isInternetAvailable({ authority: 'https://accounts.google.com' });
if (! googleIsReachable) {
  ...
}

jclaveau avatar Sep 14 '22 13:09 jclaveau