UNPKG

pgh-common-utils

Version:

A collection of utility functions for TypeScript.

9 lines (8 loc) 222 B
export declare const RegexRules: { mobile: RegExp; email: RegExp; idCard: RegExp; url: RegExp; chinese: RegExp; }; export declare function validate(str: string, type: keyof typeof RegexRules): boolean;