DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
207 Bytes
/* IMPORT */
import Color from '~/color';
/* MAIN */
const toHex = ( color: string ): string => {
return Color.format.hex.stringify ( Color.parse ( color ) );
};
/* EXPORT */
export default toHex;