6 lines
119 B
JavaScript
6 lines
119 B
JavaScript
const notifHasImg = (notif) => {
|
|
return notif.image !== undefined && notif.image.length;
|
|
};
|
|
|
|
export { notifHasImg };
|