11 lines
178 B
JavaScript
11 lines
178 B
JavaScript
|
(function (exports) {
|
||
|
'use strict';
|
||
|
|
||
|
|
||
|
exports.DNS_PACKER_TYPE_SOA = function (ab, dv, total, record) {
|
||
|
|
||
|
return total;
|
||
|
};
|
||
|
|
||
|
}('undefined' !== typeof window ? window : exports));
|