summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/content_editor/services/utils.js
blob: cf5234bbff867b8e0ca80760f2c8df2dfeede365 (plain)
1
2
3
4
5
export const hasSelection = (tiptapEditor) => {
  const { from, to } = tiptapEditor.state.selection;

  return from < to;
};