Files
2026-01-09 14:52:46 +00:00

10 lines
222 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.isImg = isImg;
/** 判断是否是图片链接 */
function isImg(path) {
return /\w.(png|jpg|jpeg|svg|webp|gif|bmp)$/i.test(path);
}