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