Files
number_zj/20220330_Vote/Ewide.Web.Entry/wwwroot/lib/xe-utils/isRegExp.d.ts
毛财君 197b38ca6f 1
2023-07-06 17:37:33 +08:00

14 lines
233 B
TypeScript

/**
* 判断是否 RegExp 对象
* @param val 值
*/
export declare function isRegExp(val: any): val is RegExp;
declare module './ctor' {
interface XEUtilsMethods {
isRegExp: typeof isRegExp;
}
}
export default isRegExp