10 lines
276 B
TypeScript
10 lines
276 B
TypeScript
export const DEFAULT_MESSAGE_MAX_LENGTH = 4000;
|
|
|
|
export function normalizeMessageText(value: string) {
|
|
return value.normalize("NFKC").trim();
|
|
}
|
|
|
|
export function messageFitsLimit(value: string, maxLength: number) {
|
|
return normalizeMessageText(value).length <= maxLength;
|
|
}
|