vh-plugin
Version:
轻量级JS插件包
17 lines (16 loc) • 400 B
TypeScript
/**
* @description: 一些常用的正则表达式验证和设备类型判断
*/
declare const check: {
phone: (phone: string) => boolean;
email: (email: string) => boolean;
idcard: (idcard: string) => boolean;
url: (url: string) => boolean;
ua: () => {
windows: boolean;
mac: boolean;
android: boolean;
ios: boolean;
};
};
export { check };