ds4/src/module/handlebars-helpers.ts
2021-02-26 01:38:53 +01:00

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;
}