dashboard
repositories
filestore
activity
search
login
main
/
Inspection-Saber
巡检项目后台管理
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
维修详情表格优化
guoshilong
2022-10-14
a27adf26d0da65387d9d052ea74f727706e8cd46
[Inspection-Saber.git]
/
src
/
util
/
determiningFileFormat.js
1
2
3
4
5
6
7
8
9
/**
* 根据字符串后缀判断是否是图片(仅判断png、jpg、jpeg、webp格式)
* @param str
* @returns {boolean}
*/
export const isImage = (str) =>{
var reg = /.(png|jpg|gif|jpeg|webp)$/;
return reg.test(str);
}