Files
han-app/VM1_app/codebase/backend/frontend-test-site/src/message-text.ts
T

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;
}