2019-02-19 16:04:29 +08:00

7 lines
124 B
TypeScript

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