10 lines
161 B
JavaScript
10 lines
161 B
JavaScript
|
(function (exports) {
|
||
|
'use strict';
|
||
|
|
||
|
exports.DNS_CLASSES = {
|
||
|
IN: 0x01 // 1
|
||
|
, ANY: 0xff // 255
|
||
|
};
|
||
|
|
||
|
}('undefined' !== typeof window ? window : exports));
|