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

11 lines
209 B
TypeScript
Raw Permalink Normal View History

import { Image } from 'react-native';
2023-01-18 20:11:25 +00:00
export const isImageURL = async (url: string): Promise<boolean> => {
try {
const result = await Image.prefetch(url);
return result;
} catch {
return false;
}
};