README
Example use case of this package:
var test = require('pinger-v1-firstpkg')
test.pingGivenHost("google.com", 0);
My first Node Module/package. Takes host as argument and returns if given website is reachable.
<script type="module">
import pingerV1Firstpkg from 'https://cdn.skypack.dev/pinger-v1-firstpkg';
</script>
var test = require('pinger-v1-firstpkg')
test.pingGivenHost("google.com", 0);