master
/** * @param {number} num */ export const toHexStr = (num) => { return `0x${num.toString(16)}` }