debian-mirror-gitlab/app/assets/javascripts/content_editor/services/utils.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
197 B
JavaScript
Raw Normal View History

2021-09-04 01:27:46 +05:30
export const hasSelection = (tiptapEditor) => {
const { from, to } = tiptapEditor.state.selection;
return from < to;
};
2021-09-30 23:02:18 +05:30
export const clamp = (n, min, max) => Math.max(Math.min(n, max), min);