Files
openmaic/OpenMAIC/lib/pbl/v2/readers.ts
2026-08-16 14:58:47 +08:00

5 lines
180 B
TypeScript

/** Read a possibly malformed persisted leaf as trimmed text. */
export function trimmedPBLText(value: unknown): string {
return typeof value === 'string' ? value.trim() : '';
}