You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
370 B
13 lines
370 B
/**
|
|
* 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)
|
|
}
|