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

8 lines
334 B
TypeScript

// Fast Image can't render a svg image from a uri yet, because of that we aren't test the svg within the RegEx
export const regExpImageType = new RegExp(
'.(jpg|jpeg|png|webp|avif|gif|tiff)' + // type of the URL
'(\\?[;&a-z\\d%_.~+=-]*)?',
'i' // query string
);
export const isImage = (url: string) => regExpImageType.test(url);