mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-07 04:33:35 +00:00
6 lines
212 B
TypeScript
6 lines
212 B
TypeScript
// Qa Lab plugin module implements cli options behavior.
|
|
export function collectString(value: string, previous: string[]) {
|
|
const trimmed = value.trim();
|
|
return trimmed ? [...previous, trimmed] : previous;
|
|
}
|