lab_work3

This commit is contained in:
2025-05-05 17:26:53 +04:00
parent 307c2b89d0
commit edd470aa16
8988 changed files with 857846 additions and 609 deletions

View File

@@ -0,0 +1,6 @@
// @flow
import getNodeName from './getNodeName';
export default function isTableElement(element: Element): boolean {
return ['table', 'td', 'th'].indexOf(getNodeName(element)) >= 0;
}