util.js 191 Bytes
Newer Older
DarkForst's avatar
DarkForst committed
1 2 3 4 5 6
// 判断是否为图片
export const isImg = (path) => {
    return [
        'png', 'jpg', 'jpeg', 'bmp', 'gif', 'webp', 'psd', 'svg', 'tiff'].
        indexOf(path.toLowerCase()) !== -1;
}