Files
to_docx/client/node_modules/khroma/src/utils/unit.ts
T
Chen Xiao 0b64e2de94 First commit.
Signed-off-by: Chen Xiao <abigwc@gmail.com>
2026-05-08 14:43:16 +08:00

21 lines
226 B
TypeScript

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