mirror of
https://github.com/youzan/vant.git
synced 2025-10-19 18:14:13 +00:00
7 lines
134 B
TypeScript
7 lines
134 B
TypeScript
/**
|
|
* Is image source
|
|
*/
|
|
export function isSrc(url: string): boolean {
|
|
return /^(((blob:)?https?:)?\/\/|data:image)/.test(url);
|
|
}
|