UNPKG

@vericus/slate-kit-history

Version:

plugin that group together history of selections to the next editing event on slate for undo/redo

6 lines 233 B
export default function isUndo(prevValue, currValue) { var currUndos = currValue.data.get("undos"); var prevUndos = prevValue.data.get("undos"); return prevUndos.size > currUndos.size; } //# sourceMappingURL=isUndo.js.map