UNPKG

@minionorg/share

Version:
12 lines (11 loc) 246 B
/** * 判断是否为英文 * * @param {string} str 字符串 * @return {boolean} 英文则为真 * @example * isZH('中国') = false * isZH('string') = true */ declare function isEN(str: string): boolean; export default isEN;