10 lines
222 B
JavaScript
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);
|
|
} |