UNPKG

@atlaskit/editor-plugin-insert-block

Version:

Insert block plugin for @atlaskit/editor-core

6 lines 183 B
/** * Checks if an element is detached (i.e. not in the current document) */ export var isDetachedElement = function isDetachedElement(el) { return !document.body.contains(el); };