mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-10 08:09:06 +00:00
24 lines
558 B
TypeScript
24 lines
558 B
TypeScript
// Irc plugin module implements control chars behavior.
|
|
export function isIrcControlChar(charCode: number): boolean {
|
|
return charCode <= 0x1f || charCode === 0x7f;
|
|
}
|
|
|
|
export function hasIrcControlChars(value: string): boolean {
|
|
for (const char of value) {
|
|
if (isIrcControlChar(char.charCodeAt(0))) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
export function stripIrcControlChars(value: string): string {
|
|
let out = "";
|
|
for (const char of value) {
|
|
if (!isIrcControlChar(char.charCodeAt(0))) {
|
|
out += char;
|
|
}
|
|
}
|
|
return out;
|
|
}
|