File size: 228 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
/**
* Is the provided author name blocked?
* @param authorName - Author name
* @returns True if blocked
*/
export const isAuthorNameBlocked = ( authorName: string ) =>
!! authorName && 'admin' === authorName.toLowerCase();
|