blowfish/node_modules/khroma/dist/utils/unit.js
2023-01-29 22:30:24 +00:00

10 lines
206 B
JavaScript

/* MAIN */
const Unit = {
/* API */
dec2hex: (dec) => {
const hex = Math.round(dec).toString(16);
return hex.length > 1 ? hex : `0${hex}`;
}
};
/* EXPORT */
export default Unit;