"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DataParser = void 0; class DataParser { static hex_to_ascii(input) { var hex = input.toString(); var str = ''; for (var n = 0; n < hex.length; n += 2) { str += String.fromCharCode(parseInt(hex.substr(n, 2), 16)); } return str; } } exports.DataParser = DataParser;