mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-30 08:11:54 +02:00
11 lines
206 B
JavaScript
11 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;
|