chore(Uploader): identify bmp and jfif format (#3040)

This commit is contained in:
neverland 2020-04-19 08:18:36 +08:00 committed by GitHub
parent 74ea6cbafc
commit 918abd8dd4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,10 +8,10 @@ interface File {
image: boolean; // 是否为图片
}
const IMAGE_EXT = ['jpeg', 'jpg', 'gif', 'png', 'svg', 'webp'];
const IMAGE_REGEXP = /\.(jpeg|jpg|gif|png|svg|webp|jfif|bmp|dpg)/i;
export function isImageUrl(url: string): boolean {
return IMAGE_EXT.some(ext => url.indexOf(`.${ext}`) !== -1 || url.indexOf(`.${ext.toLocaleUpperCase()}`) !== -1); // 有些七牛返回来的后缀的大写,加以判断
function isImageUrl(url: string): boolean {
return IMAGE_REGEXP.test(url);
}
export function isImageFile(item: File): boolean {