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

package.modules.isElement.js Maven / Gradle / Ivy

The newest version!
// Is a given value a DOM element?
export default function isElement(obj) {
  return !!(obj && obj.nodeType === 1);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy