mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-06-25 17:06:24 +00:00
7 lines
214 B
TypeScript
7 lines
214 B
TypeScript
export function isImageURL(iconURL?: string | null): iconURL is string {
|
|
if (!iconURL) {
|
|
return false;
|
|
}
|
|
|
|
return /^https?:\/\//i.test(iconURL) || (iconURL.startsWith('/') && !iconURL.startsWith('//'));
|
|
}
|