UNPKG

@svta/common-media-library

Version:
12 lines 365 B
"use strict"; 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