This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/helpers/editorContentEmpty.ts
kolaente ba766a29af
All checks were successful
continuous-integration/drone/push Build is passing
fix(editor): check for empty content
2023-11-03 12:22:38 +01:00

4 lines
115 B
TypeScript

export function isEditorContentEmpty(content: string): boolean {
return content === '' || content === '<p></p>'
}