UNPKG

@atlaskit/editor-plugin-paste-options-toolbar

Version:

Paste options toolbar for @atlaskit/editor-core

14 lines 261 B
export const hasTableNode = slice => { if (!slice) { return false; } let found = false; slice.content.descendants(node => { if (node.type.name === 'table') { found = true; return false; } return true; }); return found; };