@svta/common-media-library
Version:
A common library for media playback in JavaScript
9 lines • 374 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getCharForByte = getCharForByte;
const specialCea608CharsCodes_js_1 = require("./specialCea608CharsCodes.js");
function getCharForByte(byte) {
return String.fromCharCode(specialCea608CharsCodes_js_1.specialCea608CharsCodes[byte] || byte);
}
;
//# sourceMappingURL=getCharForByte.js.map