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