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

13 lines
231 B
JavaScript
Raw Normal View History

2018-03-19 17:31:44 +01:00
// (function (exports) {
2017-01-26 19:18:46 -07:00
'use strict';
2017-02-02 14:46:25 -07:00
2017-01-26 19:18:46 -07:00
// Meaning:Use: Requests ANY resource record (typicall wants SOA,
// MX, NS, and MX)
exports.DNS_TYPE_ANY = function (rdata) {
};
2018-03-19 17:31:44 +01:00
// }('undefined' !== typeof window ? window : exports));