UNPKG

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

Version:

Paste options toolbar for @atlaskit/editor-core

14 lines 287 B
export var hasTableNode = function hasTableNode(slice) { if (!slice) { return false; } var found = false; slice.content.descendants(function (node) { if (node.type.name === 'table') { found = true; return false; } return true; }); return found; };