mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-03 03:38:41 +08:00
5 lines
131 B
TypeScript
5 lines
131 B
TypeScript
export function isKorean(text: string): boolean {
|
|
const reg = /([(\uAC00-\uD7AF)|(\u3130-\u318F)])+/gi
|
|
return reg.test(text)
|
|
}
|