11 lines
195 B
JavaScript
11 lines
195 B
JavaScript
|
(function (exports) {
|
||
|
'use strict';
|
||
|
|
||
|
exports.DNS_PACKER = {
|
||
|
pack: function () {
|
||
|
throw new Error("DNS Packer Not Implemented");
|
||
|
}
|
||
|
};
|
||
|
|
||
|
}('undefined' !== typeof window ? window : exports));
|