Skip to content

Commit be0cf6a

Browse files
authoredMar 29, 2022
fix: default verbatim to undefined (#135)
1 parent 16af8da commit be0cf6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lib/dns.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const defaultOptions = exports.defaultOptions = {
55
family: undefined,
66
hints: dns.ADDRCONFIG,
77
all: false,
8-
verbatim: true,
8+
verbatim: undefined,
99
}
1010

1111
const lookupCache = exports.lookupCache = new LRUCache({ max: 50 })

0 commit comments

Comments
 (0)
Please sign in to comment.