/*! * Jodit Editor (https://xdsoft.net/jodit/) * Released under MIT see LICENSE.txt in the project root for license information. * Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net */ import { Dom } from "../../../core/dom/dom.js"; /** * Inside the CELL table - nothing to do * * @example * ```html *
|test
* ``` * result * ```html *
|test
* ``` * * @private */ export function checkTableCell(jodit, fakeNode) { const cell = fakeNode.parentElement; if (Dom.isCell(cell)) { return true; } return false; }