DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
240 Bytes
/* IMPORT */
import Color from '~/color';
/* MAIN */
const isValid = ( color: string ): boolean => {
try {
Color.parse ( color );
return true;
} catch {
return false;
}
};
/* EXPORT */
export default isValid;