Files
copilot-toolbox-template-123/node_modules/@ant-design/pro-utils/es/isImg/index.js
2026-01-09 14:52:46 +00:00

4 lines
126 B
JavaScript

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