UNPKG

tiptap

Version:

A rich-text editor for Vue.js

4 lines (3 loc) 123 B
export default function minMax(value = 0, min = 0, max = 0) { return Math.min(Math.max(parseInt(value, 10), min), max) }