mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
[bugfix] Utils: is-src add blob image source (#3300)
This commit is contained in:
parent
f17891bdb3
commit
084eed3c63
@ -86,4 +86,6 @@ test('is-src', () => {
|
|||||||
expect(isSrc('img.cdn.com')).toBeFalsy();
|
expect(isSrc('img.cdn.com')).toBeFalsy();
|
||||||
expect(isSrc('name')).toBeFalsy();
|
expect(isSrc('name')).toBeFalsy();
|
||||||
expect(isSrc('')).toBeFalsy();
|
expect(isSrc('')).toBeFalsy();
|
||||||
|
expect(isSrc('blob:http://img.cdn.com')).toBeTruthy();
|
||||||
|
expect(isSrc('blob:https://img.cdn.com')).toBeTruthy();
|
||||||
});
|
});
|
||||||
|
@ -2,5 +2,5 @@
|
|||||||
* Is image source
|
* Is image source
|
||||||
*/
|
*/
|
||||||
export function isSrc(url: string): boolean {
|
export function isSrc(url: string): boolean {
|
||||||
return /^(https?:)?\/\/|data:image/.test(url);
|
return /^((blob:)?https?:)?\/\/|data:image/.test(url);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user