dashboard
repositories
filestore
activity
search
login
main
/
Inspection-Saber
巡检项目后台管理
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
代码优化
xiebin
2022-10-09
85516fee32a60da175e88a9bea5e0d1935bc050f
[Inspection-Saber.git]
/
src
/
util
/
determiningFileFormat.js
1
2
3
4
export const isImage = (str) =>{
var reg = /.(png|jpg|gif|jpeg|webp)$/;
return reg.test(str);
}