verdnatura-chat/app/lib/methods/helpers/image.ts

3 lines
140 B
TypeScript
Raw Normal View History

2022-12-07 21:02:16 +00:00
const regExpUrlImage = new RegExp(/\.(jpg|jpeg|png|webp|avif|gif|svg)$/);
export const isImage = (url: string) => regExpUrlImage.test(url);