mirror of https://github.com/msgbyte/tailchat
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
378 B
TypeScript
18 lines
378 B
TypeScript
/**
|
|
* 昵称合法性匹配
|
|
* 最大八个汉字内容或者16字英文
|
|
* 且中间不能有空格
|
|
*/
|
|
export const NAME_REGEXP =
|
|
/^([0-9a-zA-Z]{1,2}|[\u4e00-\u9eff]|[\u3040-\u309Fー]|[\u30A0-\u30FF]){1,8}$/;
|
|
|
|
/**
|
|
* 系统语言的常量
|
|
*/
|
|
export const LANGUAGE_KEY = 'i18n:language';
|
|
|
|
/**
|
|
* 系统用户id
|
|
*/
|
|
export const SYSTEM_USERID = '000000000000000000000000';
|