gitlab-org--gitlab-foss/app/assets/javascripts/content_editor/services/utils.js

6 lines
125 B
JavaScript
Raw Normal View History

export const hasSelection = (tiptapEditor) => {
const { from, to } = tiptapEditor.state.selection;
return from < to;
};