[bugfix] Utils: <is-src> data URLs should be prefixed with the data:image (#3308)

This commit is contained in:
xg4 2019-05-16 10:44:25 +08:00 committed by 陈嘉涵
parent 6961e4efb0
commit 48d47cc1e0
2 changed files with 2 additions and 1 deletions

View File

@ -88,4 +88,5 @@ test('is-src', () => {
expect(isSrc('')).toBeFalsy();
expect(isSrc('blob:http://img.cdn.com')).toBeTruthy();
expect(isSrc('blob:https://img.cdn.com')).toBeTruthy();
expect(isSrc('xdata:image/jpeg;base64,/9j/4AAQSkZ')).toBeFalsy();
});

View File

@ -2,5 +2,5 @@
* Is image source
*/
export function isSrc(url: string): boolean {
return /^((blob:)?https?:)?\/\/|data:image/.test(url);
return /^(((blob:)?https?:)?\/\/|data:image)/.test(url);
}