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