DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
246 Bytes
/* IMPORT */
import alpha from '~/methods/alpha';
import type {Channels} from '~/types';
/* MAIN */
const isTransparent = ( color: string | Channels ): boolean => {
return !alpha ( color );
};
/* EXPORT */
export default isTransparent;