Expect to expose `getDefaultVerbatim` method
What is the problem this feature will solve?
When the dnsOrder value of the dns module changes, I hope to get the modified value or judge that the value has changed. Therefore, I want to expose getDefaultVerbatim method or expose a new method getDefaultResultOrder.
| function getDefaultVerbatim() { | |
| return dnsOrder !== 'ipv4first'; | |
| } |
function getDefaultResultOrder() { return dnsOrder; }
What is the feature you are proposing to solve the problem?
Judging whether dnsOrder has changed according to the exposed api.
What alternatives have you considered?
No response