UNPKG

zsg-utils

Version:

JavaScript 函数库、工具类

9 lines (8 loc) 318 B
/** * checkStr 正则方法 * @param {String} str 要检验的数据 * @param {String} type 类型 phone | card | email | number | english | chinese | lower | upper * @returns {Boolean} true or false */ declare const checkStr: (str: string, type: string) => boolean; export default checkStr;