We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
node:dns
@anonrig
I was updating the matrix and noticed a few quirk for the dns impl:
A few missing contsants on dns:
dns
ADDRCONFIG: 1024, ALL: 256, V4MAPPED: 2048,
More importantly dns.promises is undefined (where import dns from 'node:dns';) - note that import dnsP from 'node:dns/promises'; works as expected.
dns.promises
import dns from 'node:dns';
import dnsP from 'node:dns/promises';
The text was updated successfully, but these errors were encountered:
Nice catch. I'll address them asap. Thanks @vicb
Sorry, something went wrong.
anonrig
Successfully merging a pull request may close this issue.
@anonrig
I was updating the matrix and noticed a few quirk for the dns impl:
A few missing contsants on
dns
:More importantly
dns.promises
is undefined (whereimport dns from 'node:dns';
) - note thatimport dnsP from 'node:dns/promises';
works as expected.The text was updated successfully, but these errors were encountered: