openclaw/src/auto-reply/reply/reply-inline-whitespace.ts

6 lines
194 B
TypeScript
Raw Normal View History

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