7 lines
134 B
TypeScript

/**
* Is image source
*/
export function isSrc(url: string): boolean {
return /^(((blob:)?https?:)?\/\/|data:image)/.test(url);
}