dns-suite.js/dns.type.any.js

13 lines
225 B
JavaScript
Raw Normal View History

2017-01-27 02:18:46 +00:00
(function (exports) {
'use strict';
2017-02-02 21:46:25 +00:00
2017-01-27 02:18:46 +00:00
// Meaning:Use: Requests ANY resource record (typicall wants SOA,
// MX, NS, and MX)
exports.DNS_TYPE_ANY = function (rdata) {
};
}('undefined' !== typeof window ? window : exports));