10 lines
300 B
TypeScript
10 lines
300 B
TypeScript
export default { htmlToPlainText, isEmpty };
|
|
|
|
function htmlToPlainText(input: string | null | undefined): string | null | undefined {
|
|
if (!input) return;
|
|
return $(input).text();
|
|
}
|
|
|
|
function isEmpty(input: Array<unknown> | null | undefined): boolean {
|
|
return (input?.length ?? 0) === 0;
|
|
}
|