5 lines
180 B
TypeScript
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() : '';
|
|
}
|