@svta/common-media-library
Version:
A common library for media playback in JavaScript
12 lines • 365 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.numArrayToHexArray = numArrayToHexArray;
function numArrayToHexArray(numArray) {
const hexArray = [];
for (let j = 0; j < numArray.length; j++) {
hexArray.push(numArray[j].toString(16));
}
return hexArray;
}
;
//# sourceMappingURL=numArrayToHexArray.js.map