cal/packages/lib/checkIfItFallbackImage.ts

7 lines
218 B
TypeScript
Raw Normal View History

2023-11-15 06:53:33 -03:00
import { AVATAR_FALLBACK } from "./constants";
const checkIfItFallbackImage = (fetchedImgSrc: string) => {
return !fetchedImgSrc || fetchedImgSrc.endsWith(AVATAR_FALLBACK);
};
export default checkIfItFallbackImage;