mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-24 02:16:12 +08:00
7 lines
130 B
TypeScript
7 lines
130 B
TypeScript
/**
|
|
* Is image source
|
|
*/
|
|
export default function src(url: string): boolean {
|
|
return /^(https?:)?\/\/|data:image/.test(url);
|
|
}
|