ipms-sjy-ui/src/views/ai/utils/common-utils.ts

14 lines
364 B
TypeScript
Raw Normal View History

2024-07-04 09:51:39 +08:00
/**
* Created by
*
* AI
*
* src/utils/common-utils.ts
* AI /views/ai/utils/common-utils.ts
*/
/** 判断字符串是否包含中文 */
export const hasChinese = async (str) => {
return /[\u4E00-\u9FA5]+/g.test(str)
}