UNPKG

@ant-design/pro-utils

Version:
10 lines (9 loc) 222 B
"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); }