7 lines
132 B
TypeScript

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