Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
/**
* Is the provided author name blocked?
* @param authorName - Author name
* @returns True if blocked
*/
export const isAuthorNameBlocked = ( authorName: string ) =>
!! authorName && 'admin' === authorName.toLowerCase();