eight
2024-08-20 1f4db481c48e6beb5c787f126576e63363b10a13
1
2
3
4
5
6
7
8
9
10
11
12
13
/**
 * Created by 芋道源码
 *
 * AI 枚举类
 *
 * 问题:为什么不放在 src/utils/common-utils.ts 呢?
 * 回答:主要 AI 是可选模块,考虑到独立、解耦,所以放在了 /views/ai/utils/common-utils.ts
 */
 
/**  判断字符串是否包含中文  */
export const hasChinese = (str: string) => {
  return /[\u4e00-\u9fa5]/.test(str)
}