function setDefaultResultOrder
Jump to headingsetDefaultResultOrder(order: "ipv4first"
| "ipv6first"
| "verbatim"): voidSet the default value of order in dns.lookup() and [lookup](../../.././dns/promises/~/lookup). The value could be:
ipv4first: sets defaultordertoipv4first.ipv6first: sets defaultordertoipv6first.verbatim: sets defaultordertoverbatim.
The default is verbatim and dnsPromises.setDefaultResultOrder()
have higher priority than --dns-result-order.
When using worker threads, dnsPromises.setDefaultResultOrder()
from the main thread won't affect the default dns orders in workers.
Parameters Jump to heading
Jump to headingorder: "ipv4first"
| "ipv6first"
| "verbatim"must be 'ipv4first', 'ipv6first' or 'verbatim'.
Return Type Jump to heading
void