mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-16 19:57:48 +08:00
7 lines
169 B
JavaScript
7 lines
169 B
JavaScript
export default function (type) {
|
|
return (state, dispatch) => {
|
|
const { from, to } = state.selection
|
|
return dispatch(state.tr.removeMark(from, to, type))
|
|
}
|
|
}
|