Files
Moltbot/src/auto-reply/reply/reply-inline-whitespace.ts
2026-03-02 23:16:47 +00:00

6 lines
194 B
TypeScript

const INLINE_HORIZONTAL_WHITESPACE_RE = /[^\S\n]+/g;
export function collapseInlineHorizontalWhitespace(value: string): string {
return value.replace(INLINE_HORIZONTAL_WHITESPACE_RE, " ");
}