4 lines
126 B
JavaScript
4 lines
126 B
JavaScript
/** 判断是否是图片链接 */
|
|
export function isImg(path) {
|
|
return /\w.(png|jpg|jpeg|svg|webp|gif|bmp)$/i.test(path);
|
|
} |