mirror of
https://github.com/youzan/vant.git
synced 2025-10-17 00:14:18 +00: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);
|
|
}
|