🌳
pt0/serverF/libF/libDnsF.mts
1import dns from 'dns'
3export const hostToIp = async (host: string, options?: dns.LookupOptions) => {
4 const resp = await dns.promises.lookup(host, options ?? {family: 0})
5 const result = Array.isArray(resp) ? resp[0] : resp
6 return result.address
7}