Browse Source

Revert "dns: verify argument is valid function in resolve"

This reverts commit 2ee86c624e.
v0.10.26-release
Fedor Indutny 11 years ago
parent
commit
96379f83e0
  1. 4
      lib/dns.js

4
lib/dns.js

@ -184,11 +184,9 @@ exports.resolve = function(domain, type_, callback_) {
if (typeof type_ == 'string') {
resolver = resolveMap[type_];
callback = callback_;
} else if (util.isFunction(type_)) {
} else {
resolver = exports.resolve4;
callback = type_;
} else {
throw new Error('Type must be a string')
}
if (typeof resolver === 'function') {

Loading…
Cancel
Save