1import dns from 'dns'23export 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] : resp6 return result.address7}