All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.dist.esm.dom-utils.isTableElement.js Maven / Gradle / Ivy

There is a newer version: 2.11.8
Show newest version
import getNodeName from "./getNodeName.js";
export default function isTableElement(element) {
  return ['table', 'td', 'th'].indexOf(getNodeName(element)) >= 0;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy