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

7 months ago
7 months ago
7 months ago
  1. /**
  2. * Created by
  3. *
  4. * AI
  5. *
  6. * src/utils/common-utils.ts
  7. * AI /views/ai/utils/common-utils.ts
  8. */
  9. /** 判断字符串是否包含中文 */
  10. export const hasChinese = (str: string) => {
  11. return /[\u4e00-\u9fa5]/.test(str)
  12. }