Files
2026-01-16 01:51:36 +00:00

4 lines
126 B
JavaScript

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