mirror of
https://github.com/ianstormtaylor/slate.git
synced 2025-02-24 01:02:31 +01:00
18 lines
240 B
JavaScript
18 lines
240 B
JavaScript
|
|
||
|
/**
|
||
|
* Find the DOM node for a `node`.
|
||
|
*
|
||
|
* @param {Node} node
|
||
|
* @return {Element} el
|
||
|
*/
|
||
|
|
||
|
function findDOMNode(node) {
|
||
|
return window.document.querySelector(`[data-key="${node.key}"]`)
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Export.
|
||
|
*/
|
||
|
|
||
|
export default findDOMNode
|