UNPKG

@atlaskit/editor-common

Version:

A package that contains common classes and components for editor and renderer

8 lines 242 B
import { hasParentNodeOfType } from '@atlaskit/editor-prosemirror/utils'; export const insideTable = state => { const { table, tableCell } = state.schema.nodes; return hasParentNodeOfType([table, tableCell])(state.selection); };